public static enum ExcelSaveOptions.ExcelFormat extends Enum<ExcelSaveOptions.ExcelFormat>
Allows to specify .xls/xml or .xlsx file format. Default value is XLSX;
Enum Constant and Description |
---|
CSV
A comma-separated values (CSV) File Format
|
ODS
OpenDocument Spreadsheet
|
XLSM
A macro-enabled Office Open XML (.xlsm) File Format
|
XLSX
Office Open XML (.xlsx) File Format
|
XMLSpreadSheet2003
Excel 2003 XML Format
|
Modifier and Type | Method and Description |
---|---|
static ExcelSaveOptions.ExcelFormat |
getByValue(int value) |
int |
getValue() |
static ExcelSaveOptions.ExcelFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExcelSaveOptions.ExcelFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExcelSaveOptions.ExcelFormat XMLSpreadSheet2003
Excel 2003 XML Format
public static final ExcelSaveOptions.ExcelFormat XLSX
Office Open XML (.xlsx) File Format
public static final ExcelSaveOptions.ExcelFormat CSV
A comma-separated values (CSV) File Format
public static final ExcelSaveOptions.ExcelFormat XLSM
A macro-enabled Office Open XML (.xlsm) File Format
public static final ExcelSaveOptions.ExcelFormat ODS
OpenDocument Spreadsheet
public static ExcelSaveOptions.ExcelFormat[] values()
for (ExcelSaveOptions.ExcelFormat c : ExcelSaveOptions.ExcelFormat.values()) System.out.println(c);
public static ExcelSaveOptions.ExcelFormat valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
public static ExcelSaveOptions.ExcelFormat getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.