[]
Represents some settings when serialize workbook or worksheet to JSON.
public class SerializationOptions
Constructor.
public SerializationOptions()
Gets or sets whether to export shared formula when serialize the workbook or worksheet to JSON. Default value is true.
public bool ExportSharedFormula { get; set; }
Gets or sets whether to ignore below information to JSON file which is out of used range when exporting to JSON. Default value is true.
public bool IgnoreColumnRowInfoOutOfUsedRange { get; set; }
Whether to ignore the formula when serialize the workbook or worksheet to JSON. Default value is false.
public bool IgnoreFormula { get; set; }
Gets or sets whether to ignore data out of the RowCount and ColumnCount when exporting to JSON. Default value is false.
public bool IgnoreRangeOutOfRowColumnCount { get; set; }
Gets or sets whether to ignore the sheets when exporting to JSON. Default value is false.
public bool IgnoreSheets { get; set; }
Whether to ignore the style when serialize the workbook or worksheet to JSON. Default value is false.
public bool IgnoreStyle { get; set; }