Column (ScreenField property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (match syntax table to syntax template, tags and edits)
Line 1: Line 1:
{{Template:ScreenField:Column subtitle}}
{{Template:ScreenField:Column subtitle}}
The <var>Column</var> read-only property returns the number of the first column of a <var>screenfield</var>.
The first column, in any field, is reserved for an attribute byte and does not contain displayable data (it appears on a screen as a blank).  The field's value (display data) begins by default in the column immediately following the reserved column.


This read-only property returns the number of the first column of a screenfield. The first column, in any field, is reserved for an attribute byte and does not contain displayable data (it appears on a screen as a blank). The field's value (display data) begins by default in the column immediately following the reserved column.
==Syntax==
==Syntax==
{{Template:ScreenField:Column syntax}}
{{Template:ScreenField:Column syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%num</th>
<tr><th><var>%num</var></th>
<td>A User Language numeric variable to contain the number of the field's first column. </td></tr>
<td>A User Language numeric variable to contain the number of the field's first column.</td></tr>
<tr><th>%sfield</th>
<tr><th><var>sfield</var></th>
<td>A reference to an instance of a ScreenField object.</td></tr>
<td>A reference to an instance of a <var>ScreenField</var> object.</td></tr>
</table>
</table>
==See also==
==See also==
{{Template:ScreenField:Column footer}}
{{Template:ScreenField:Column footer}}

Revision as of 08:00, 26 June 2011

Return the column number of a screenfield (ScreenField class)

The Column read-only property returns the number of the first column of a screenfield.

The first column, in any field, is reserved for an attribute byte and does not contain displayable data (it appears on a screen as a blank). The field's value (display data) begins by default in the column immediately following the reserved column.

Syntax

%number = sfield:Column

Syntax terms

%num A User Language numeric variable to contain the number of the field's first column.
sfield A reference to an instance of a ScreenField object.

See also