Tab.ColorIndex 属性 (Excel)
返回或设置一个 Variant 值,该值代表指定工作表选项卡或图表选项卡的颜色。
语法
expression.ColorIndex
表达 一个代表 Tab 对象的变量。
备注
返回 Tab 对象后,可以使用 ColorIndex 属性来确定图表或工作表的选项卡设置。
该颜色指定为当前调色板中的索引值 1 到 56 或 XlColorIndex 值 xlColorIndexNone。
示例
在以下示例中,Microsoft Excel 确定第一个工作表的选项卡颜色索引是否设置为 none 并通知用户。
Sub CheckTab()
' Determine if color index of 1st tab is set to none.
If Worksheets(1).Tab.ColorIndex = xlColorIndexNone Then
MsgBox "The color index is set to none for the first " & _
"worksheet tab."
Else
MsgBox "The color index for the tab of the first worksheet " & _
"is not set to none."
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。