Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns the underline style for this font.
C#
public UnderlineStyle Underline{ get; set; }
vb.net
Public Property Underline() As UnderlineStyle

Examples

C#
//--- Get Underline
Font.UnderlineStyle underStyle = fnt.Underline;
 
//--- Set Underline
fnt.Underline = Font.UnderlineStyle.Double;
vb.net
'--- Get Underline
Dim underStyle As Font.UnderlineStyle = fnt.Underline
 
'--- Set Underline
fnt.Underline = Font.UnderlineStyle.Double

  • No labels