{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:vb.net}
Public Property Font() As Font
{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}