{description}
{excerpt}Sets or returns the highlight color for a character run as a {msdn:System.Drawing.Color|Color} object.{excerpt}
{signature:C#}
 public System.Drawing.Color Highlight{ get; set; }
{signature}{signature:vb.net}
Public Property Highlight() As System.Drawing.Color
{signature}
{remarks}MS Word equivalent: Formatting toolbar > Highlight button

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

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

          //--- Set Highlight
          oFont.Highlight = Color.Yellow;
        {code}
{code:vb.net|title=vb.net}

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

          '--- Set Highlight
          oFont.Highlight = Color.Yellow
        {code}

{example}