-
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)
DeserializationOptions
Class DeserializationOptions
java.lang.Object
com.grapecity.documents.excel.DeserializationOptions
Represents some settings when deserialize workbook or worksheet from JSON.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanGets whether to prevent recalculation after loading the JSON data.booleanGets whether to ignore the formula when deserialize the workbook or worksheet from JSON.booleanGets whether to ignore the style when deserialize the workbook or worksheet from JSON.voidsetDoNotRecalculateAfterLoad(boolean value) Sets whether to prevent recalculation after loading the JSON data.voidsetIgnoreFormula(boolean value) Sets whether to ignore the formula when deserialize the workbook or worksheet from JSON.voidsetIgnoreStyle(boolean value) Sets whether to ignore the style when deserialize the workbook or worksheet from JSON.
-
Constructor Details
-
DeserializationOptions
public DeserializationOptions()
-
-
Method Details
-
getIgnoreStyle
public boolean getIgnoreStyle()Gets whether to ignore the style when deserialize the workbook or worksheet from JSON. Default value is false. -
setIgnoreStyle
public void setIgnoreStyle(boolean value) Sets whether to ignore the style when deserialize the workbook or worksheet from JSON. Default value is false. -
getIgnoreFormula
public boolean getIgnoreFormula()Gets whether to ignore the formula when deserialize the workbook or worksheet from JSON. Default value is false. -
setIgnoreFormula
public void setIgnoreFormula(boolean value) Sets whether to ignore the formula when deserialize the workbook or worksheet from JSON. Default value is false. -
getDoNotRecalculateAfterLoad
public boolean getDoNotRecalculateAfterLoad()Gets whether to prevent recalculation after loading the JSON data. Default value is false. -
setDoNotRecalculateAfterLoad
public void setDoNotRecalculateAfterLoad(boolean value) Sets whether to prevent recalculation after loading the JSON data. Default value is false.
-