CursorColumn (Screen property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (re-<var>)
mNo edit summary
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:
==Syntax==
==Syntax==
{{Template:Screen:CursorColumn syntax}}
{{Template:Screen:CursorColumn syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><var>%currentNum</var></th>
<tr><th>%currentNumber</th>
<td>A numeric variable to receive the current cursor column number.</td></tr>
<td>A numeric variable to receive the current cursor column number.</td></tr>
<tr><th><var>screen</var></th>
 
<tr><th>screen</th>
<td>A reference to an instance of a <var>Screen</var> object.</td></tr>
<td>A reference to an instance of a <var>Screen</var> object.</td></tr>
<tr><th><var>newNum</var></th>
 
<td>A numeric variable or expression setting the new column that the cursor will be positioned at.</td></tr>
<tr><th>newNumber</th>
<td>A numeric variable or expression setting the new column at which the cursor will be positioned.</td></tr>
</table>
</table>


==Usage notes==
==Usage notes==
<ul><li>Although you can set an absolute position for the cursor using <var>CursorColumn</var> and <var>[[CursorRow (Screen property)|CursorRow]]</var>, it is generally more useful to use the <var>[[SetCursor (ScreenField subroutine)|SetCursor]]</var> subroutine to move the cursor to a particular field, independent of its absolute location on the screen.
<ul>
<li>Although you can set an absolute position for the cursor using <var>CursorColumn</var> and <var>[[CursorRow (Screen property)|CursorRow]]</var>, it is generally more useful to use the <var>[[SetCursor (ScreenField subroutine)|SetCursor]]</var> subroutine to move the cursor to a particular field, independent of its absolute location on the screen.
</ul>
</ul>


==See also==
==See also==
{{Template:Screen:CursorColumn footer}}
{{Template:Screen:CursorColumn footer}}

Latest revision as of 22:34, 16 November 2012

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

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

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