{description}
{excerpt}Sets or returns an {{float}} that represents the font size for a character run. The font size will always be a multiple of 0.5.{excerpt}
{signature:C#}
 public double FontSize{ get; set; }
{signature}{signature:vb.net}
Public Property FontSize() As Double
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Size:

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

          //--- Return FontSize
          float fontSize = oFont.FontSize;

          //--- Set FontSize to 16 points
          oFont.FontSize = 16.0;
        {code}
{code:vb.net|title=vb.net}

          '--- Return FontSize
          Dim fontSize As Float = oFont.FontSize

          '--- Set FontSize to 16 points
          oFont.FontSize = 16.0
        {code}

{example}