Excel) (Tab.ColorIndex 屬性
會傳回或設定 Variant 值,代表指定之工作表索引標籤或圖表索引標籤的色彩。
語法
expression.ColorIndex
表達 代表 Tab 物件的變數。
註解
傳回 Tab 物件之後,您可以使用 ColorIndex 屬性來判斷圖表或工作表的索引標籤設定。
色彩會指定為目前調色盤中從 1 到 56 的索引值,或 XlColorIndex 值 xlColorIndexNone。
範例
在下列範例中,Microsoft Excel 會判斷第一張工作表的索引標籤色彩索引是否設定為 [無],並通知使用者。
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 支援與意見反應。