SaveFormat

Overview

SaveFormat is an enum in Aspose.Cells FOSS for TypeScript that specifies the output file format for Workbook.save().

This enumeration defines 5 values: XLSX, CSV, JSON, MARKDOWN, HTML.

Description

SaveFormat is an enumeration type in the Aspose.Cells FOSS library for TypeScript. It defines a set of named constants that control behavior or specify options within the API. Enumerations like SaveFormat help ensure type safety by restricting values to a predefined set.

Values

ValueDescription
XLSXMicrosoft Excel 2007+ Open XML spreadsheet format (.xlsx)
CSVComma-Separated Values plain-text format (.csv)
JSONJavaScript Object Notation format (.json)
MARKDOWNMarkdown plain-text format (.md)
HTMLHyperText Markup Language format (.html)

See Also