[]
Represents the file format to use when opening a workbook.
Use this enum with workbook open overloads when the file format should be specified explicitly rather than inferred from the file name or stream content.
public enum OpenFileFormat
Public Enum OpenFileFormat
workbook.Open("resources/template.sjs", OpenFileFormat.Sjs);
workbook.Open("resources/data.csv", OpenFileFormat.Csv);
| Name | Description |
|---|---|
| Csv | Represents a csv file. |
| Sjs | Represents a SpreadJS .sjs file. |
| Xlsm | Represents an xlsm file. |
| Xlsx | Represents an xlsx file. |
| Xltx | Represents an xltx file. |