Sets or returns the font size, in points.

public double Size{ get; set; }
Public Property Size() As Double

          //--- Get Size
          double fontSize = fnt.Size;

          //--- Set Size
          fnt.Size = 12;
        
          '--- Get Size
          Dim fontSize As Double = fnt.Size

          '--- Set Size
          fnt.Size = 12