{description}
{excerpt}Sets or returns the color of the worksheet's sheet name tab. Setting the color to an automatic color will set the color to no color.{excerpt}
{signature:C#}
 public Color TabColor{ get; set; }
{signature}{signature:vb.net}
Public Property TabColor() As Color
{signature}
{example}
{code:csharp|title=C#}
//--- Set TabColor
ws.TabColor = wb.Palette.GetClosestColor(System.Drawing.Color.Red);

//--- Get TabColor
Color tabClr = ws.TabColor;
{code}
{code:vb.net|title=vb.net}
'--- Set TabColor
ws.TabColor = wb.Palette.GetClosestColor(System.Drawing.Color.Red)

'--- Get TabColor
Dim tabClr As Color = ws.TabColor
{code}
{example}