Property Type: Static
Default Value: True
Sets if the text is to be underlined or an underline is to appear when the mouse hovers over the control.
The Hyperlink control has both Hover Underline and Text Underline properties.
The Text Underline property must be set to false to allow the Hover Underline to function.
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.
Hover, Text Underline Property Value (static) | Result |
---|---|
True | Will underline the text displayed. (For the Hover Underline property this is when the mouse hovers over the control.) |
False | Will not display the underline on the text displayed. |
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.
Hover, Text Underline Property Value (Dynamic) | Result |
---|---|
IF(LengthReturn<25, True, False) | Will underline the text displayed when LengthReturn is less than 25, otherwise no underline will appear. |
Value set in Form Designer. For DriveWorks projects static properties can be made Dynamic by double clicking the gray radio button.