Sets or returns the Font object that defines the font for this style.

 public Font Font{ get; set; }
Public Property Font() As Font

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

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

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

          '--- Set Font
          styl.Font = fnt