{description}
{excerpt}Sets or returns the color of the font.{excerpt}
{signature:C#}
 public Color Color{ get; set; }
{signature}{signature:vb.net}
Public Property Color() As Color
{signature}
{example}{code:csharp|title=C#}

          //--- Get Color
          Color fontClr = fnt.Color;

          //--- Set Color
          fnt.Color = wb.Palette.GetClosestColor(100, 100, 255);
        {code}
{code:vb.net|title=vb.net}

          '--- Get Color
          Dim fontClr As Color = fnt.Color

          '--- Set Color
          fnt.Color = wb.Palette.GetClosestColor(100, 100, 255)
        {code}

{example}