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 Text Underline and Text Underline (Hover) properties.
The Text Underline property must be set to false to allow the Text Underline (Hover) to function.
Property Type: Static
Hierarchical Reference (Hover Underline): ControlName.HoverUnderline
Hierarchical Reference (Text Underline): ControlName.TextUnderline
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.
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. Static properties can be made Dynamic by double clicking the gray radio button.