Home Search

DriveWorks Pro 21
Enabled

Send Feedback

Enabled

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.

Hierarchical Reference: ControlNameEnabled

To Change the Default Value

The default value of the property can be changed by any of the following methods:

  • Enter the required value directly into the enabled property field.
    1. Click in the property for the control to be changed.
    2. Type the required value directly into the property field.
  • Activate the rule builder.
    1. Click in the property for the control to be changed.
    2. Click the build button at the end of the property field to launch the rule builder .
    3. Enter the rule in the rule editor and click OK to apply.

Examples

Enabled Property ValueResultNotes
TrueEnables the controlThe value can be added without launching the rule builder. Type the value directly into the control property.
FalseDisables the controlThe 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.

Value can be controlled by a rule.