Limitations
Runtime only.
Gets or sets underlining styles for the selected text.
public FontUnderlineStyle Underline { get; set; }
Public Property Underline() As FontUnderlineStyle
Member | Description |
---|---|
None | Text is not underlined. |
Single | Text is underlined with a single line. |
Doubled | Text is underlined with a doubled line. |
Single |
Only the words of the text are underlined with a single line. |
Doubled |
Only the words of the text are underlined with a doubled line. |
The following example uses Underline property to set the underlining style of the selected text i.e. "TX Text Control". The text will be underlined with a double line as the value given to property Underline is Doubled.
textControl1.Text = "TX Text Control";
TXTextControl.Selection mySel = new TXTextControl.Selection(3, 4);
mySel.Bold = true;
mySel.Italic = true;
mySel.Underline = Underline.Doubled;
textControl1.Selection = mySel;
TextControl1.Text = "TX Text Control"
Dim mySel as TXTextControl.Selection = New TXTextControl.Selection(3, 4)
mySel.Bold = True
mySel.Italic = True
mySel.Underline = Underline.Doubled
TextControl1.Selection = mySel
Runtime only.
The property's default value is Font
The property returns its default value when the text selection contains multiple characters with mixed styles. The Selection.