-
com.grapecity.documents.excel
-
- AsyncCustomFunction
- BaseCellType
- ButtonCellType
- CalcReference
- CancellationToken
- CancellationTokenSource
- CellColorSortField
- CellDecoration
- CellDecorationIcon
- CellInfo
- CellPadding
- CheckBoxCellType
- CheckBoxListCellType
- Color
- ColorUtilities
- ComboBoxCellItem
- ComboBoxCellType
- CornerFold
- CsvOpenOptions
- CsvParseContext
- CsvParseResult
- CsvSaveOptions
- CustomBorderStyle
- CustomFunction
- DataImportOptions
- DataImportResult
- DataValidationJsonError
- DateInfo
- DeserializationOptions
- DocumentProperties
- Event
- EventArgs
- FindOptions
- FontColorSortField
- FontInfo
- FormulaJsonError
- HyperLinkCellType
- IconSortField
- ImageSaveOptions
- ImageSource
- JsonError
- Margin
- OpenOptionsBase
- PageContentInfo
- PageInfo
- PagePrintedEventArgs
- PagePrintEventArgs
- PagePrintingEventArgs
- PageSettings
- Parameter
- PasteOption
- PdfSaveOptions
- PdfSecurityOptions
- PivotFilterOptions
- Point
- PrintManager
- RadioButtonListCellType
- RangeEventArgs
- RangeFindReplace
- RangeFindReplace.FindReplaceImpl
- RangePartialClasses
- RangePartialClasses.FindReplaceImpl
- RangeTemplateCellType
- Rectangle
- RepeatSetting
- ReplaceOptions
- SaveOptionsBase
- SelectFieldItem
- SerializationOptions
- SheetEventArgs
- SignatureDetails
- Size
- SjsOpenOptions
- SjsSaveOptions
- SortFieldBase
- SpecialCellsValue
- TableStyleFactory
- TextFormatInfo
- Theme
- Themes
- ThemeStorage
- ValueSortField
- WebRequestResult
- Workbook
- WorkbookOptions
- WriteProtection
- XlsmOpenOptions
- XlsmSaveOptions
- XlsxOpenOptions
- XlsxSaveOptions
- XltxOpenOptions
- XltxSaveOptions
-
- com.grapecity.documents.excel.drawing
- com.grapecity.documents.excel.expressions
- com.grapecity.documents.excel.forms
- com.grapecity.documents.excel.template
- com.grapecity.documents.excel.template.DataSource
(Showing Draft Content)
XlsxSaveOptions
Class XlsxSaveOptions
java.lang.Object
com.grapecity.documents.excel.SaveOptionsBase
com.grapecity.documents.excel.XlsxSaveOptions
- Direct Known Subclasses:
XlsmSaveOptions,XltxSaveOptions
Option class for saving xlsx file.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanGets whether to exclude any empty cells(cells with no data or only style) outside the used data range.final booleanGets whether to exclude user-defined but never used Define name.final booleanGets whether to exclude user-defined but never used Cell styles.booleanGets whether to export shared formulas when saving the workbook.final booleanGets whether treat formula cells as value cells.final booleanGets whether to include the automatically merged cells.final booleanGets whether to include the binding source when saving the file.final booleanGets a bool indicating whether to save workbook in compact mode, the default value is false.final StringThe password for the xlsx file.final voidsetExcludeEmptyRegionCells(boolean value) Sets whether to exclude any empty cells(cells with no data or only style) outside the used data range.final voidsetExcludeUnusedNames(boolean value) Sets whether to exclude user-defined but never used Define name.final voidsetExcludeUnusedStyles(boolean value) Sets whether to exclude user-defined but never used Cell styles.voidsetExportSharedFormula(boolean value) Sets whether to export shared formulas when saving the workbook.final voidsetIgnoreFormulas(boolean value) Sets whether treat formula cells as value cells.final voidsetIncludeAutoMergedCells(boolean value) Sets whether to include the automatically merged cells.final voidsetIncludeBindingSource(boolean value) Sets whether to include the binding source when saving the file.final voidsetIsCompactMode(boolean value) Sets a bool indicating whether to save workbook in compact mode, the default value is false.final voidsetPassword(String value) The password for the xlsx file.toString()Methods inherited from class com.grapecity.documents.excel.SaveOptionsBase
getFileFormat, setFileFormat
-
Constructor Details
-
XlsxSaveOptions
public XlsxSaveOptions()Constructor.
-
-
Method Details
-
getPassword
The password for the xlsx file. -
setPassword
The password for the xlsx file. -
getIsCompactMode
public final boolean getIsCompactMode()Gets a bool indicating whether to save workbook in compact mode, the default value is false. -
setIsCompactMode
public final void setIsCompactMode(boolean value) Sets a bool indicating whether to save workbook in compact mode, the default value is false. -
getIgnoreFormulas
public final boolean getIgnoreFormulas()Gets whether treat formula cells as value cells. -
setIgnoreFormulas
public final void setIgnoreFormulas(boolean value) Sets whether treat formula cells as value cells. -
getExcludeUnusedStyles
public final boolean getExcludeUnusedStyles()Gets whether to exclude user-defined but never used Cell styles. Default is false. -
setExcludeUnusedStyles
public final void setExcludeUnusedStyles(boolean value) Sets whether to exclude user-defined but never used Cell styles. Default is false. -
getExcludeUnusedNames
public final boolean getExcludeUnusedNames()Gets whether to exclude user-defined but never used Define name. Default is false. -
setExcludeUnusedNames
public final void setExcludeUnusedNames(boolean value) Sets whether to exclude user-defined but never used Define name. Default is false. -
getExcludeEmptyRegionCells
public final boolean getExcludeEmptyRegionCells()Gets 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) Sets whether to exclude any empty cells(cells with no data or only style) outside the used data range. Default is false. -
getIncludeBindingSource
public final boolean getIncludeBindingSource()Gets whether to include the binding source when saving the file. Default value is true. -
setIncludeBindingSource
public final void setIncludeBindingSource(boolean value) Sets whether to include the binding source when saving the file. -
getIncludeAutoMergedCells
public final boolean getIncludeAutoMergedCells()Gets whether to include the automatically merged cells. The default value is false. -
setIncludeAutoMergedCells
public final void setIncludeAutoMergedCells(boolean value) Sets whether to include the automatically merged cells. The default value is false. -
toString