Skip to content

Latest commit

 

History

History
61 lines (43 loc) · 1.56 KB

Excel.Tab.md

File metadata and controls

61 lines (43 loc) · 1.56 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Tab object (Excel)
vbaxl10.chm722072
vbaxl10.chm722072
Excel.Tab
c6555e96-b96e-54d8-b8c6-5ab13c256d97
04/02/2019
medium

Tab object (Excel)

Represents the tab of a chart or a worksheet.

Remarks

Use the Tab property of the Chart object or Worksheet object to return a Tab object.

After a Tab object is returned, you can use the ColorIndex property to determine the settings of a tab for a chart or worksheet.

Example

In the following example, Microsoft Excel determines if the worksheet's first tab color index is set to none, and then notifies the user.

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

Properties

See also

[!includeSupport and feedback]