Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns a Font.UnderlineType object that represents the underline type for this formatting.



{remarks}
{example}{code:csharp|title=C#}

          //--- Return Underline
          Font.UnderlineType oUnderline = oFont.Underline;

          //--- Set Underline to Double
          oFont.Underline = Font.UnderlineType.Double;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Return Underline
          Dim oUnderline As Font.UnderlineType = oFont.Underline

          '--- Set Underline to Double
          oFont.Underline = Font.UnderlineType.Double
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns a [Font.UnderlineType|Font.UnderlineType (no attachments)] object that represents the underline type for this formatting.{excerpt}
{signature:C#}
 public UnderlineType Underline{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Underline() As UnderlineType
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Underline style:
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle