[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IWorkbook.SheetTabs

SheetTabs Property

SheetTabs

Returns the collection of sheet tabs contained in the workbook.

Declaration
ISheetTabs SheetTabs { get; }
ReadOnly Property SheetTabs As ISheetTabs
Examples
workbook.Open("import.sjs");
ISheetTabs sheetTabs = workbook.SheetTabs;
if (sheetTabs.Count > 0)
{
    ISheetTab firstTab = sheetTabs[0];
    string tabName = firstTab.Name;
}