CursorColumn (Screen property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 3: Line 3:
This property either gets the column number where the cursor is currently positioned, or it sets the column number for the cursor position.
This property either gets the column number where the cursor is currently positioned, or it sets the column number for the cursor position.
==Syntax==
==Syntax==
{{Template:Screen:CursorColumn syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<dl>
Line 10: Line 11:
<dt>A reference to an instance of a Screen object.
<dt>A reference to an instance of a Screen object.


==Usage Notes==
==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.
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.
==See also==
==See also==
{{Template:Screen:CursorColumn footer}}
{{Template:Screen:CursorColumn footer}}

Revision as of 19:23, 18 March 2011

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


This 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

%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.

See also