[]
Represents a sheet tab.
A sheet tab provides information about a worksheet tab in a workbook,
including its index, name, and SheetTabType. You can obtain an
ISheetTab instance from the sheet tab collection returned by
SheetTabs.
public interface ISheetTab
Public Interface ISheetTab
workbook.Open("import.sjs");
ISheetTabs sheetTabs = workbook.SheetTabs;
if (sheetTabs.Count > 0) {
ISheetTab sheetTab = sheetTabs[0];
string name = sheetTab.Name;
int index = sheetTab.Index;
SheetTabType sheetType = sheetTab.SheetType;
}
| Name | Description |
|---|---|
| Index | Gets the index of this sheet tab within the workbook's sheet tab collection. The index starts at 0. |
| Name | Gets the name of the sheet tab. |
| SheetType | Gets the type of sheet tab. |