[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISheetTab.Name

Name Property

Name

Gets the name of the sheet tab.

Declaration
string Name { get; }
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;
}