Excel) (Worksheet.Tab 属性

返回工作表的 Tab 对象。

语法

表达式选项 卡

表达 一个代表 Worksheet 对象的变量。

示例

在此示例中,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 1st " & _ 
 "worksheet tab." 
 Else 
 MsgBox "The color index for the tab of the 1st worksheet " & _ 
 "is not set none." 
 End If 
 
End Sub

支持和反馈

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