Sets or returns a String that represents the name of the font used in this formatting.

public System.String FontName{ get; set; }
Public Property FontName() As String

MS Word equivalent: Format menu > Font... > Font tab > Font:

          //--- Return FontName
          string fontName = oFont.FontName;

          //--- Set Fontname
          oFont.FontName = "Arial";
        
          '--- Return FontName
          Dim fontName As String = oFont.FontName

          '--- Set FontName
          oFont.FontName = "Arial"