Rows (Screen function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (match syntax table to syntax template; edits, tags and links)
Line 1: Line 1:
{{Template:Screen:Rows subtitle}}
{{Template:Screen:Rows subtitle}}
The <var>Rows</var> read-only property returns the number of rows in the current screen.  This number corresponds to the row value returned by a <var class="product">Model 204</var> <code>VIEW MODEL</code> command.


This 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==
==Syntax==
{{Template:Screen:Rows syntax}}
{{Template:Screen:Rows syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%num</th>
<tr><th><var>%number</var></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>%screen</th>
<tr><th><var>screen</var></th>
<td>A reference to an instance of a Screen object.</td></tr>
<td>A reference to an instance of a <var>Screen</var> object.</td></tr>
</table>
</table>
==See also==
==See also==
{{Template:Screen:Rows footer}}
{{Template:Screen:Rows footer}}

Revision as of 07:07, 26 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