CursorColumn (Screen property)

From m204wiki
Revision as of 19:02, 31 January 2011 by Tom (talk | contribs) (→‎CursorColumn property)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

  %screen:cursorColumn = %num
  %num = %screen:cursorColumn
CursorColumn syntax
%num
A numeric variable or expression for the column number.
%screen
A reference to an instance of a Screen object.
Usage Notes

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