Sets or returns the color of the text in a character run as a object.

 public System.Drawing.Color TextColor{ get; set; }
Public Property TextColor() As System.Drawing.Color

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


          //--- Return TextColor
          Color oColor = oFont.TextColor;

          //--- Set TextColor
          oFont.TextColor = Color.Red;
        

          '--- Return TextColor
          Dim oColor As Color = oFont.TextColor

          '--- Set TextColor
          oFont.TextColor = Color.Red