IsUnderline Function

Class

TextField.

Action

Tests whether the Underline style is being used in a rich edit control.

Availability

This method is available only in Windows, providing support for the RichEdit control, and is supported only in scripts that use the Classic Agent.

Syntax

bUnderline = textfield.IsUnderline([iLine, iCol])
Variable Description
bUnderline TRUE if the character is underlined. BOOLEAN.
iLine Optional: The line number of the character whose style to get. INTEGER.
iCol Optional: The column number of the character whose style to get. INTEGER.

Notes

IsUnderline returns TRUE if the Underline style is being used in a rich edit control.

  • If the optional iLine and iCol arguments are not specified, then IsUnderline returns TRUE if newly inserted characters will be underlined.

  • If iLine and iCol are supplied, then IsUnderline returns TRUE if the specified character is underlined.

Example

Verify(MyDialog.RichEdit1.IsUnderline(4, 1), TRUE)