[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SheetTabType

SheetTabType Enum

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.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public enum SheetTabType
Public Enum SheetTabType
Examples
workbook.Open("import.sjs");
ISheetTabs sheetTabs = workbook.SheetTabs;
if (sheetTabs.Count > 0) { 
    ISheetTab sheetTab = sheetTabs[0];
    SheetTabType sheetType = sheetTab.SheetType;
}

Fields

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.