DesktopBevelButton.Underline

From Xojo Documentation

Property (As Boolean )
aDesktopBevelButton.Underline = newBooleanValue
or
BooleanValue = aDesktopBevelButton.Underline

New in 2021r3

Supported for all project types and targets.

If True, applies the underline style to the control’s caption and/or its text content if any.

Sample Code

This code underlines the control’s text or caption property.

Me.Underline = True

This code in any event of a DesktopBevelButton underlines the Caption property:

Me.Underline = True
Me.Caption = "underlined"