The enabled property determines if the control is available for user interaction or not.
Property Type: Dynamic
Default Value: True
When the property is set to TRUE, user interaction is allowed.
When the property is set to FALSE, user interaction is not allowed.
In most cases the control whose enabled property is set to FALSE, takes on a disabled appearance to make it obvious to the user that the control is disabled.
The default value of the property can be changed by any of the following methods:
Enabled Property Value | Result | Notes |
---|---|---|
True | Enables the control | The value can be added without launching the rule builder. Type the value directly into the control property. |
False | Disables the control | The value can be added without launching the rule builder. Type the value directly into the control property. |
IF(OtherControlReturn="Red" , True , False) | Enables the control when OtherControl equals Red, otherwise the control is disabled. | Launch the rule builder by selecting the property and clicking the build button to apply the rule. |
IF(OtherControlValue>200 , True , False) | Enables the control when OtherControl is greater than 200, otherwise the control is disabled. | Launch the rule builder by selecting the property and clicking the build button to apply the rule. |
A value controlled by a rule.