Rows (Screen function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to syntax template; edits, tags and links)
m (unvar)
Line 6: Line 6:
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th><var>%number</var></th>
<tr><th>%number</th>
<td>A numeric variable to contain the number of screen rows.</td></tr>
<td>A numeric variable to contain the number of screen rows.</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>
</table>
</table>

Revision as of 10:34, 28 June 2011

Return the number of rows in the current screen (Screen class)

The Rows read-only property returns the number of rows in the current screen. This number corresponds to the row value returned by a Model 204 VIEW MODEL command.

Syntax

%number = screen:Rows

Syntax terms

%number A numeric variable to contain the number of screen rows.
screen A reference to an instance of a Screen object.

See also