'Declaration
Function MoveCursor( _ ByVal rows As Integer, _ ByVal columns As Integer _ ) As ReturnCode
'Usage
Dim instance As IIbmScreen Dim rows As Integer Dim columns As Integer Dim value As ReturnCode value = instance.MoveCursor(rows, columns)
ReturnCode MoveCursor( int rows, int columns )
Parameters
- rows
- The number of rows to move the cursor. The minimum and maximum values vary according to the number of rows supported by the terminal model Reflection is emulating.
- columns
- The number of columns to move the cursor. The minimum and maximum values vary according to the number of columns supported by the terminal model Reflection is emulating.
Return Value
ReturnCode indicates success, failure, or an error if the cursor position reaches the screen boundary.