ReadOnly Property
Applies To
TextBox
Description
Gets or sets which the textbox control is ReadOnly or not.
Usage
GGet Form.Control.ReadOnly, var
GSet Form.Control.ReadOnly, value
- Form
- Name of a form or string variable containing a form name.
- Control
- Name of a control or string variable containing a control name. The control must exist in the specified form.
- var
- Boolean variable that will contain the value of the property.
- value
- Boolean expression for the new value of the property.
Values
False
True
Default: False
Remarks
When this property is set to True, Operator is not able to edit textbox.
See Also
TextBox
Example
GSet frmMain.txtSpeed.ReadOnly, True
← R RemoveRow Property →