Row (ScreenField property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to syntax template; edits, tags and links)
m (1 revision)
(No difference)

Revision as of 18:31, 19 March 2012

Return the row number of a screenfield (ScreenField class)

The Row 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 receive 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