[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SaveFileFormat

SaveFileFormat Enum

Represents the format in which the workbook is saved.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public enum SaveFileFormat
Public Enum SaveFileFormat
Examples
Workbook workbook = new Workbook();
workbook.Worksheets[0].Range["A1"].Value = "Total";
using MemoryStream outputStream = new MemoryStream();
workbook.Save(outputStream, SaveFileFormat.Xlsx);

Fields

Name Description
Csv

Represents a csv file.

Html

Represents an html file.

Pdf

Represents a pdf file.

Sjs

Represents a SpreadJS .sjs file.

Xlsm

Represents an xlsm file.

Xlsx

Represents an xlsx file.

Xltx

Represents an xltx file.