Excel) (Tab 对象

表示图表或工作表的选项卡。

备注

使用 Chart 对象或 Worksheet 对象的 Tab 属性可返回一个 Tab 对象。

返回 Tab 对象后,可以使用 ColorIndex 属性来确定图表或工作表的选项卡设置。

示例

在以下示例中,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 none." 
 End If 
 
End Sub

属性

另请参阅

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。