类 XlsxSaveOptions
java.lang.Object
com.grapecity.documents.excel.SaveOptionsBase
com.grapecity.documents.excel.XlsxSaveOptions
- 直接已知子类:
XlsmSaveOptions
,XltxSaveOptions
Option class for saving xlsx file.
-
构造器概要
-
方法概要
修饰符和类型方法说明final boolean
Indicates whether to exclude any empty cells(cells with no data or only style) outside the used data range.final boolean
Indicates whether to exclude user-defined but never used Define name.final boolean
Indicates whether to exclude user-defined but never used Cell styles.final boolean
Indicates whether treat formula cells as value cells.final boolean
A bool indicating whether to save workbook in compact mode, the default value is false.final String
The password for the xlsx file.final void
setExcludeEmptyRegionCells
(boolean value) Indicates whether to exclude any empty cells(cells with no data or only style) outside the used data range.final void
setExcludeUnusedNames
(boolean value) Indicates whether to exclude user-defined but never used Define name.final void
setExcludeUnusedStyles
(boolean value) Indicates whether to exclude user-defined but never used Cell styles.final void
setIgnoreFormulas
(boolean value) Indicates whether treat formula cells as value cells.final void
setIsCompactMode
(boolean value) A bool indicating whether to save workbook in compact mode, the default value is false.final void
setPassword
(String value) The password for the xlsx file.toString()
从类继承的方法 com.grapecity.documents.excel.SaveOptionsBase
getFileFormat, setFileFormat
-
构造器详细资料
-
XlsxSaveOptions
public XlsxSaveOptions()Constructor.
-
-
方法详细资料
-
getPassword
The password for the xlsx file. -
setPassword
The password for the xlsx file. -
getIsCompactMode
public final boolean getIsCompactMode()A bool indicating whether to save workbook in compact mode, the default value is false. -
setIsCompactMode
public final void setIsCompactMode(boolean value) A bool indicating whether to save workbook in compact mode, the default value is false. -
getIgnoreFormulas
public final boolean getIgnoreFormulas()Indicates whether treat formula cells as value cells. -
setIgnoreFormulas
public final void setIgnoreFormulas(boolean value) Indicates whether treat formula cells as value cells. -
getExcludeUnusedStyles
public final boolean getExcludeUnusedStyles()Indicates whether to exclude user-defined but never used Cell styles. Default is false. -
setExcludeUnusedStyles
public final void setExcludeUnusedStyles(boolean value) Indicates whether to exclude user-defined but never used Cell styles. Default is false. -
getExcludeUnusedNames
public final boolean getExcludeUnusedNames()Indicates whether to exclude user-defined but never used Define name. Default is false. -
setExcludeUnusedNames
public final void setExcludeUnusedNames(boolean value) Indicates whether to exclude user-defined but never used Define name. Default is false. -
getExcludeEmptyRegionCells
public final boolean getExcludeEmptyRegionCells()Indicates whether to exclude any empty cells(cells with no data or only style) outside the used data range. Default is false. -
setExcludeEmptyRegionCells
public final void setExcludeEmptyRegionCells(boolean value) Indicates whether to exclude any empty cells(cells with no data or only style) outside the used data range. Default is false. -
toString
-