The border that surrounds the options contained in an Option Group control can be turned on or off using the Show Border property.
The Show Border property determines whether to show or hide the Option Group border.
Property Type: Static
Default Value: True
Ensure the property is a static property (It will display the gray orb alongside the property name)
The default value of the static property can be changed by selecting the required value directly from the property field.
Show Border Property Value (static) | Result | Notes |
---|---|---|
True | Will show the border. | |
False | Will hide the border. |
A rule can also be built for this property by changing the type to dynamic.
See How To: Change A Static Property To A Dynamic Property.
Show Border Property Value (Dynamic) | Result | Notes |
---|---|---|
IF( ChooseOptions="Yes", True, False) | Will show the border when the value of ChooseOptions is "Yes", otherwise the border will be hidden. |
Value set in Form Designer. For DriveWorks projects static properties can be made Dynamic by double clicking the gray radio button.