|
|
|
|
|
Underline (Property) In french: Souligné
The Underline property is used to: - Find out whether a Font variable is underlined.
- Underline (or not) a Font variable.
// Define the characteristics of a Font variable Font1 is Font Font1.Name = "Arial" Font1.Size = 14 Font1.SizeUnit = unitPoint Font1.Underline = True // Apply the font to "MyControl" MyControl.Font = Font1
Syntax
Finding out whether a Font variable is underlined Hide the details
<Result> = <Font used>.Underline
<Result>: Boolean - True if the specified font is underlined,
- False otherwise.
<Font used>: Font variable Name of the Font variable to be used.
Underlining (or not) a Font variable Hide the details
<Font used>.Underline = <Underlined/Not underlined>
<Font used>: Font variable Name of the Font variable to be used. <Underlined/Not underlined>: Boolean - True if the specified font must be underlined,
- False otherwise.
Remarks A font can be created from a Font variable. To define the font characteristics, use: - the FontCreate function.
 This function is not available. - the Charset, Orientation, StrikeOut, Color, Bold, Italic, CharacterSpacing, LineSpacing, Name, Underline, Size and SizeUnit properties.
 The Charset and Orientation properties are not available for Font variables.
This font can be used:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|