'Declaration
Function PutCharacter( _ ByVal character As ScreenCharacter, _ ByVal row As Integer, _ ByVal column As Integer _ ) As ReturnCode
'Usage
Dim instance As IIbmScreen Dim character As ScreenCharacter Dim row As Integer Dim column As Integer Dim value As ReturnCode value = instance.PutCharacter(character, row, column)
ReturnCode PutCharacter( ScreenCharacter character, int row, int column )
Parameters
- character
- Screen character to put at the screen.
- row
- Row position on the screen.
- column
- Column position on the screen.
Return Value
ReturnCode indicates success, failure, or a warning condition if the cursor position reaches the screen boundary.