Column (ScreenField property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Created page with "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 displayabl...")
 
mNo edit summary
 
(10 intermediate revisions by 4 users not shown)
Line 1: Line 1:
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.
{{Template:ScreenField:Column subtitle}}
The <var>Column</var> [[Classes and Objects#readWrite|readOnly]] property returns the number of the first column of a <var>screenfield</var>.


  %num = %sfield:Column
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.


; Column syntax
==Syntax==
{{Template:ScreenField:Column syntax}}


; %num
===Syntax terms===
: A User Language numeric variable to contain the number of the field's first column.
<table class="syntaxTable">
<tr><th>%number</th>
<td>A <var class="product">User Language</var> numeric variable to contain the number of the field's first column.</td></tr>


; %sfield  
<tr><th>sfield</th>
: A reference to an instance of a ScreenField object.
<td>A reference to an instance of a <var>ScreenField</var> object.</td></tr>
</table>
 
==See also==
{{Template:ScreenField:Column footer}}

Latest revision as of 17:57, 20 November 2012

Return the column number of a screenfield (ScreenField class)

The Column readOnly 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

%number 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