[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISheetTab.SheetType

SheetType Property

SheetType

Gets the type of sheet tab.

Declaration
SheetTabType SheetType { get; }
ReadOnly Property SheetType As SheetTabType
Examples
workbook.Open("import.sjs");
ISheetTabs sheetTabs = workbook.SheetTabs;
if (sheetTabs.Count > 0) {
    ISheetTab sheetTab = sheetTabs[0];
    SheetTabType sheetType = sheetTab.SheetType;
}