Home Search

DriveWorks Pro 21
Hover and Text Underline

Send Feedback

Hover and Text Underline

Sets if the text is to be underlined or an underline is to appear when the mouse hovers over the control.

Please Note

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.

Property Type: Static

Hierarchical Reference (Hover Underline): ControlName.HoverUnderline

Hierarchical Reference (Text Underline): ControlName.TextUnderline

Default Value: True

To Change the Default Value

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.

  1. Click in the property for the control to be changed.
  2. Select the required value directly from the property field drop down.

Examples

Hover, Text Underline Property Value (static)Result
TrueWill underline the text displayed. (For the Hover Underline property this is when the mouse hovers over the control.)
FalseWill 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.