[]
Specifies the type of a worksheet tab.
This enum identifies whether a worksheet tab represents a table sheet, gantt sheet, or report sheet. It is typically used with ISheetTab to inspect sheet tab information in a workbook.
public enum SheetTabType
Public Enum SheetTabType
workbook.Open("import.sjs");
ISheetTabs sheetTabs = workbook.SheetTabs;
if (sheetTabs.Count > 0) {
ISheetTab sheetTab = sheetTabs[0];
SheetTabType sheetType = sheetTab.SheetType;
}
| Name | Description |
|---|---|
| GanttSheet | Represents a gantt sheet. Use this enum value to identify or convert the type of a sheet tab when working with SheetTabType values. |
| ReportSheet | Represents a report sheet. Use this enum value to identify a sheet tab that represents a report sheet when working with ISheetTab or converting sheet tab type values. |
| TableSheet | Represents a table sheet. Use this enum value to identify or convert the type of a sheet tab when working with SheetTabType values. |