Rows (Screen function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
mNo edit summary
Line 2: Line 2:


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.
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==
  %num = %screen:Rows
===Syntax terms===
 
<dl>
; <font size='3'>Rows syntax</font>
<dt>%num  
 
<dd>A numeric variable to contain the number of screen rows.
; %num  
<dt>%screen  
: A numeric variable to contain the number of screen rows.
<dd>A reference to an instance of a Screen object.
 
</dl>
; %screen  
: A reference to an instance of a Screen object.
==See also==
==See also==
{{Template:Screen:Rows footer}}
{{Template:Screen:Rows footer}}

Revision as of 19:48, 18 March 2011

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


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 terms

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

See also