Width (ScreenField property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (match syntax table to syntax template; edits, tags and links)
Line 1: Line 1:
{{Template:ScreenField:Width subtitle}}
{{Template:ScreenField:Width subtitle}}
The <var>Width</var> read-only property returns the width of a <var>Screenfield</var>.  A <var>Screenfield</var> width is set by the <var>[[Screen class#AddField function|AddField]]</var> method.


This read-only property returns the width of a screenfield. A Screenfield width is set by the [[Screen class#AddField function|AddField method]].
==Syntax==
==Syntax==
{{Template:ScreenField:Width syntax}}
{{Template:ScreenField:Width syntax}}
Line 7: Line 7:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%num</th>
<tr><th>%num</th>
<td>A User Language numeric variable to contain the returned field width. </td></tr>
<td>A User Language numeric variable to receive the returned field width.</td></tr>
<tr><th>%sfield</th>
<tr><th>sfield</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:Width footer}}
{{Template:ScreenField:Width footer}}

Revision as of 04:42, 1 July 2011

Return the width of a screenfield (ScreenField class)

The Width read-only property returns the width of a Screenfield. A Screenfield width is set by the AddField method.

Syntax

%number = sfield:Width

Syntax terms

%num A User Language numeric variable to receive the returned field width.
sfield A reference to an instance of a Screenfield object.

See also