[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISheetTab.Index

Index Property

Index

Gets the index of this sheet tab within the workbook's sheet tab collection. The index starts at 0.

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