Sets or returns the underline color for a character run as a object.

public System.Drawing.Color UnderlineColor{ get; set; }
<p>Public Property UnderlineColor() As System.Drawing.Color</p>

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

          //--- Return UnderlineTypeColor
          Color oColor = oFont.UnderlineColor;

          //--- Set UnderlineColor
          oFont.UnderlineColor = Color.Blue;
        
          '--- Return UnderlineColor
          Dim oColor As Color = oFont.UnderlineColor

          '--- Set UnderlineColor
          oFont.UnderlineColor = Color.Blue