[]
Gets the sheet type.
Use this property to determine whether the current sheet is a regular worksheet or another supported sheet type, such as a chart sheet.
SheetType Type { get; }
ReadOnly Property Type As SheetType
IWorksheet chartSheet = workbook.Worksheets.Add(SheetType.Chart);
SheetType type = chartSheet.Type;