CursorColumn (Screen property)

From m204wiki
Revision as of 09:12, 25 June 2011 by Goff (talk | contribs) (match syntax table to syntax template; edits, tags and links)
Jump to navigation Jump to search

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

The CursorColumn property either gets the column number where the cursor is currently positioned, or it sets the column number for the cursor position.

Syntax

%currentNumber = screen:CursorColumn screen:CursorColumn = newNumber

Syntax terms

%currentNum A numeric variable to receive the current cursor column number.
screen A reference to an instance of a Screen object.
newNum A numeric variable or expression setting the new column that the cursor will be positioned at.

Usage notes

  • Although you can set an absolute position for the cursor using CursorColumn and CursorRow, it is generally more useful to use the SetCursor subroutine to move the cursor to a particular field, independent of its absolute location on the screen.

See also