Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

Description

Excerpt

Sets or returns a font for the CharacterRun.

Signature
C#
C#
public Font Font{ get; set; }
Signature
vb.net
vb.net
Public Property Font() As Font
Example
 
Code Block
csharp
csharp
titleC#
          //--- Get Font
          Font fnt = charRun.Font;

          //--- Set Font
          charRun.Font = fnt
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get Font
          Dim oFont As Font = charRun.Font

          '--- Set Font
          charRun.Font = fnt
        
Example