Excel) (Tab 物件
代表圖表或工作表的索引標籤。
使用 Chart 物件或 Worksheet 物件的 Tab 屬性可傳回 Tab 物件。
傳回 Tab 物件之後,您可以使用 ColorIndex 屬性來判斷圖表或工作表的索引標籤設定。
在下列範例中,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 none."
End If
End Sub
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。