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 for the CharacterRun.

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

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

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

          '--- Get Font
          Dim oFont As Font = charRun.Font

          '--- Set Font
          charRun.Font = fnt
        
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns the font for the [CharacterRun|CharacterRun].{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

...

{code}

{example}
{scrollbar}