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 the Font object that defines the font for this style.

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

          //--- Get Font
          Font fnt = styl.Font;

          //--- Set Font
          styl.Font = fnt;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get Font
          Dim fnt As Font = styl.Font

          '--- Set Font
          styl.Font = fnt
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the [Font|Style.Font] object that defines the font for this style.{excerpt}
{signature:C#}
 public Font Font{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Font() As Font
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle