-
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)
SjsSaveOptions
Class SjsSaveOptions
java.lang.Object
com.grapecity.documents.excel.SaveOptionsBase
com.grapecity.documents.excel.SjsSaveOptions
Option class for saving SpreadJS file.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanGets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs.booleanGet whether to include the automatically merged cells.final booleanGets whether to include the binding source when saving the file.final booleanGet whether any empty cells outside the used data range can be included when saving the file.final booleanGet whether the formula can be included when saving the file.final booleanGet whether the style can be included when saving files.final booleanGet whether the unused custom name can be included when saving the file.voidsetIgnoreRangeOutOfRowColumnCount(boolean value) Sets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs.voidsetIncludeAutoMergedCells(boolean value) Set whether to include the automatically merged cells.final voidsetIncludeBindingSource(boolean value) Sets whether to include the binding source when saving the file.final voidsetIncludeEmptyRegionCells(boolean value) Set whether any empty cells outside the used data range can be included when saving the file.final voidsetIncludeFormulas(boolean value) Set whether the formula can be included when saving the file.final voidsetIncludeStyles(boolean value) Set whether the style can be included when saving files.final voidsetIncludeUnusedNames(boolean value) Set whether the unused custom name can be included when saving the file.Methods inherited from class com.grapecity.documents.excel.SaveOptionsBase
getFileFormat, setFileFormat
-
Constructor Details
-
SjsSaveOptions
public SjsSaveOptions()Constructor.
-
-
Method Details
-
getIncludeStyles
public final boolean getIncludeStyles()Get whether the style can be included when saving files. By default, the value is true. -
setIncludeStyles
public final void setIncludeStyles(boolean value) Set whether the style can be included when saving files. -
getIncludeFormulas
public final boolean getIncludeFormulas()Get whether the formula can be included when saving the file. By default, the value is true. -
setIncludeFormulas
public final void setIncludeFormulas(boolean value) Set whether the formula can be included when saving the file. -
getIncludeUnusedNames
public final boolean getIncludeUnusedNames()Get whether the unused custom name can be included when saving the file. By default, the value is true. -
setIncludeUnusedNames
public final void setIncludeUnusedNames(boolean value) Set whether the unused custom name can be included when saving the file. -
getIncludeEmptyRegionCells
public final boolean getIncludeEmptyRegionCells()Get whether any empty cells outside the used data range can be included when saving the file. By default, the value is true. -
setIncludeEmptyRegionCells
public final void setIncludeEmptyRegionCells(boolean value) Set whether any empty cells outside the used data range can be included when saving the file. By default, the value is true. -
getIgnoreRangeOutOfRowColumnCount
public boolean getIgnoreRangeOutOfRowColumnCount()Gets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs. Default value is false. -
setIgnoreRangeOutOfRowColumnCount
public void setIgnoreRangeOutOfRowColumnCount(boolean value) Sets whether to ignore data out of the RowCount and ColumnCount when exporting to sjs. -
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 boolean getIncludeAutoMergedCells()Get whether to include the automatically merged cells. The default value is false. -
setIncludeAutoMergedCells
public void setIncludeAutoMergedCells(boolean value) Set whether to include the automatically merged cells. The default value is false.
-