show / hide menu

GetProperty

This function is used to get the property of a control. The attributes that needs to be passed to this function is a string. The control name and property can be combined as a string and passed to this function and that will return the property value. This function can be used if you need to use the control name dynamically in the rule.

Syntax:

GetProperty(ControlNameString)

Control name should be provided to get the property of a control.

Example:
TextBox2.Value=GetProperty(“TextBox2.Label.Style.Bold”)
The function will return False since the bold property for the label is disabled. The function will return True if the bold property is enabled.