Grey (fields)
Purpose
Displays field text in gray rather than the default color (black).
Use this attribute in conjunction with the Protected attribute to indicate editable fields that are currently protected.
Syntax
[Form].Field.Grey [= TRUE | FALSE | Value]
TRUE | FALSE |
TRUE displays the text in gray. |
Value |
The on/off value. This can be expressed as -1 (on) or 0 (off). You can also assign the value from a variable or the status of another field's "Grey" attribute. |
Examples
StringField1002.Grey = TRUE
StringField1002.Grey = -1
StringField1002.Grey = StringField1003.Grey
|