NewFieldRow (Screen property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
mNo edit summary
 
(9 intermediate revisions by 4 users not shown)
Line 1: Line 1:
This property sets or gets the row number for the next added field. Unless set explicitly, the next added field is adjacent to the last added field. If no fields have been added, the first screen row (1) is returned.
{{Template:Screen:NewFieldRow subtitle}}
The <var>NewFieldRow</var> property sets or gets the row number for the next added field. Unless set explicitly, the next added field is adjacent to the last added field. If no fields have been added, the first screen row (1) is returned.


  %screen:NewfieldRow = %num
==Syntax==
  %num = %screen:NewfieldRow
{{Template:Screen:NewFieldRow syntax}}


; <font size='3'>NewFieldRow syntax</font>
===Syntax terms===
<table class="syntaxTable">
<tr><th>%currentNumber</th>
<td>A numeric variable to get the current row number of the next added field. </td></tr>


; %num
<tr><th>screen</th>
: A numeric variable or expression for the row number of the next added field.
<td>A reference to an instance of a <var>Screen</var> object.</td></tr>


; %screen
<tr><th>newNumber</th>
: A reference to an instance of a Screen object.
<td>A numeric variable or expression to set the new row number of the next added field. </td></tr>
</table>
 
==See also==
{{Template:Screen:NewFieldRow footer}}

Latest revision as of 22:51, 16 November 2012

Get or set row number for next added field (Screen class)

The NewFieldRow property sets or gets the row number for the next added field. Unless set explicitly, the next added field is adjacent to the last added field. If no fields have been added, the first screen row (1) is returned.

Syntax

%currentNumber = screen:NewFieldRow screen:NewFieldRow = newNumber

Syntax terms

%currentNumber A numeric variable to get the current row number of the next added field.
screen A reference to an instance of a Screen object.
newNumber A numeric variable or expression to set the new row number of the next added field.

See also