Row (ScreenField property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
mNo edit summary
Line 1: Line 1:
This read-only property returns the row number of a screenfield. The row number is initially set for a field by the [[Screen class#AddField function|AddField method]].
This read-only property returns the row number of a screenfield. The row number is initially set for a field by the [[Screen class#AddField function|AddField method]].
==Syntax==
===Syntax terms===
<dl>
<dt>num
<dd>A User Language numeric variable to contain the returned row number.
<dt>%sfield
<dd>A reference to an instance of a ScreenField object.
</dl>


  %num = %sfield:Row
==Usage Notes==
 
; Row syntax
 
; num
: A User Language numeric variable to contain the returned row number.
 
; %sfield
: A reference to an instance of a ScreenField object.
 
; Usage Notes


The first row in a screen is row 1.
The first row in a screen is row 1.


If a screenfield occupies more than one row, the number of the first row is returned.
If a screenfield occupies more than one row, the number of the first row is returned.

Revision as of 20:26, 18 March 2011

This read-only property returns the row number of a screenfield. The row number is initially set for a field by the AddField method.

Syntax

Syntax terms

num
A User Language numeric variable to contain the returned row number.
%sfield
A reference to an instance of a ScreenField object.

Usage Notes

The first row in a screen is row 1.

If a screenfield occupies more than one row, the number of the first row is returned.