Modified (ScreenField property): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to syntax template; edits, tags and links)
Line 11: Line 11:
<td>A reference to an instance of a <var>ScreenField</var> object.</td></tr>
<td>A reference to an instance of a <var>ScreenField</var> object.</td></tr>
<tr><th>newBoolean</th>
<tr><th>newBoolean</th>
<td>A <var>Boolean enumeration</var> to set the new value for the <var>Modified</var> attribute applicable to <var class="term">sfield</var>.   Valid values are <code>True</code> and <code>False</code> (default)</td></tr>
<td>A <var>Boolean enumeration</var> to set the new value for the <var>Modified</var> attribute applicable to <var class="term">sfield</var>. Valid values are <code>True</code> and <code>False</code> (default)</td></tr>
</table>
</table>


==See also==
==See also==
{{Template:ScreenField:Modified footer}}
{{Template:ScreenField:Modified footer}}

Revision as of 04:22, 1 July 2011

Set or return the modified attribute for screenfield (ScreenField class)

The Modified property sets or returns the Modified attribute for a ScreenField. The Modified attribute is initially set for a field by the AddField method, and is always reset by the Read method.

Syntax

%currentBoolean = sfield:Modified sfield:Modified = newBoolean

Syntax terms

%currentBoolean A Boolean enumeration to get the current value of the the Modified attribute applicable to sfield. Valid values are True and False (default).
sfield A reference to an instance of a ScreenField object.
newBoolean A Boolean enumeration to set the new value for the Modified attribute applicable to sfield. Valid values are True and False (default)

See also