[]
Represents the type of a sheet.
Use this enum with Add(SheetType) to create a specific kind of sheet, or with Type to identify whether an existing sheet is a regular worksheet or a chart sheet.
public enum SheetType
Public Enum SheetType
IWorksheet chartSheet = workbook.Worksheets.Add(SheetType.Chart);
SheetType type = chartSheet.Type;
| Name | Description |
|---|---|
| Chart | Represents a chart sheet. |
| Worksheet | Represents a worksheet. |