SETCURSOR Function
Positions the cursor in a given row and column of the screen
Syntax
SETCURSOR([iRowNumber][,iColumnNumber][,iRowOffset])
Parameters
IRowNumber |
Required. Integer that specifies the row number where to position the cursor. |
|---|---|
IColumnNumber |
Optional. Integer that specifies the column number where to position the cursor. Defaults to 1. |
IRowOffset |
Optional. Integer that specifies the row number of the first row in a browse list or subfile. This parameter only makes sense in situations where the cursor is to be positioned in a browse list or subfile row and the entry is selected pressing the Enter key. |
|
Return Value
None.
Example
SETCURSOR(7, 10, 3);
Show Contents List