[]
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. - row style - column style - row height - column width
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; }
Indicates whether to include the automatically merged cells. The default value is false.
public bool IncludeAutoMergedCells { get; set; }
Gets or sets whether to include the binding source when saving the file. Default value is true.
public bool IncludeBindingSource { get; set; }