CursorRow (Screen property)

From m204wiki
Revision as of 19:32, 18 March 2011 by TomWiccan (talk | contribs) (1 revision)
Jump to navigation Jump to search

Return the row number of the cursor position (Screen class)


This property gets the row number where the cursor is currently positioned, or it sets the row number for the cursor position.

Syntax

%currentNumber = screen:CursorRow screen:CursorRow = newNumber

Syntax terms

%num A numeric variable or expression for the cursor's row number.
%screen A reference to an instance of a Screen object.

Usage notes

You can set an absolute position for the cursor using the CursorRow and CursorColumn properties, but it is generally more useful to use the ScreenField SetCursor function (“SetCursor subroutine”, below) to move the cursor to a particular field, independent of its absolute location on the screen.

See also