Message-ID: <656974344.9763.1711701989843.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_9762_41437596.1711701989843" ------=_Part_9762_41437596.1711701989843 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Worksheet.TabColor

Worksheet.TabColor

Description

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.= =20
C#
=20
<p> public Color TabColor{ get; set; }<=
;/p>
=20
=20
vb.net
=20
<p>Public Property TabColor() As Color<=
/p>
=20

Examples

=20
C#
=20
//--- Set TabColor
ws.TabColor =3D wb.Palette.GetClosestColor(System.Drawing.Color.Red);

//--- Get TabColor
Color tabClr =3D ws.TabColor;
=20
vb.net
=20
'--- Set TabColor
ws.TabColor =3D wb.Palette.GetClosestColor(System.Drawing.Color.Red)

'--- Get TabColor
Dim tabClr As Color =3D ws.TabColor
=20

------=_Part_9762_41437596.1711701989843--