FontPropertyUnderline
Type
operator
Summary
The underline setting of a font.
Syntax
the underline of <mFont>
Description
The underline flag of mFont is a boolean. If true, then text drawn with mFont will be underlined.
Parameters
Name | Type | Description |
---|---|---|
mFont | An expression which evaluates to a font. |
Examples
// Create a font
variable tFont as Font
put font "Arial" at size 20 into tFont
// Set the font to underline
set the underline of tFont to true