Row (ScreenField property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 5: Line 5:
{{Template:ScreenField:Row syntax}}
{{Template:ScreenField:Row syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt>num
<tr><th>num</th>
<dd>A User Language numeric variable to contain the returned row number.
<td>A User Language numeric variable to contain the returned row number. </td></tr>
<dt>%sfield
<tr><th>%sfield</th>
<dd>A reference to an instance of a ScreenField object.
<td>A reference to an instance of a ScreenField object.</td></tr>
</dl>
</table>


==Usage notes==
==Usage notes==

Revision as of 20:26, 18 March 2011

Return the row number of a screenfield (ScreenField class)


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

%number = sfield:Row

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.

See also