[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SheetType

SheetType Enum

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.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public enum SheetType
Public Enum SheetType
Examples
IWorksheet chartSheet = workbook.Worksheets.Add(SheetType.Chart);
SheetType type = chartSheet.Type;

Fields

Name Description
Chart

Represents a chart sheet.

Worksheet

Represents a worksheet.