Rows (Screen function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
Line 11: Line 11:
<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>
==Examples==
For an example using the <var>Rows</var> method, see [[Screen object sample code|"Screen object sample code"]].


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

Latest revision as of 17:07, 19 November 2012

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

The Rows readOnly 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.

Examples

For an example using the Rows method, see "Screen object sample code".

See also