类 DeserializationOptions

java.lang.Object
com.grapecity.documents.excel.DeserializationOptions

public class DeserializationOptions extends Object
Represents some settings when deserialize workbook or worksheet from JSON.
  • 构造器详细资料

    • DeserializationOptions

      public DeserializationOptions()
  • 方法详细资料

    • 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.