NewFieldRow (Screen property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
{{Template:Screen:NewFieldRow subtitle}}
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.
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.


Line 11: Line 13:
; %screen  
; %screen  
: A reference to an instance of a Screen object.
: A reference to an instance of a Screen object.
==See also==
{{Template:Screen:NewFieldRow footer}}

Revision as of 16:58, 16 February 2011

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


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.

  %screen:NewfieldRow = %num
  %num = %screen:NewfieldRow
NewFieldRow syntax
%num
A numeric variable or expression for the row number of the next added field.
%screen
A reference to an instance of a Screen object.

See also