Name Property
Name
Gets the name of the sheet tab.
Declaration
ReadOnly Property Name As String
Examples
workbook.Open("import.sjs");
ISheetTabs sheetTabs = workbook.SheetTabs;
if (sheetTabs.Count > 0) {
ISheetTab sheetTab = sheetTabs[0];
string name = sheetTab.Name;
}