iOSGraphics.TextUnderline

From Xojo Documentation

Property (As Boolean )
aiOSGraphics.TextUnderline = newBooleanValue
or
BooleanValue = aiOSGraphics.TextUnderline

Supported on Mobile (iOS).

Indicates if drawn text should be underlined.

Sample Code

From within an iOSCanvas.Paint event handler:

g.TextFont = New iOSFont("Helvetica Neue", 12)
g.TextUnderline = True
g.DrawTextBlock("Hello, World!", 30, 30)