[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions

Class SerializationOptions

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents some settings when serialize workbook or worksheet to JSON.

public class SerializationOptions
Inheritance
object
SerializationOptions
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

SerializationOptions()

Constructor.

public SerializationOptions()

Properties

ExportSharedFormula

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; }

Property Value

bool

IgnoreColumnRowInfoOutOfUsedRange

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; }

Property Value

bool

IgnoreFormula

Whether to ignore the formula when serialize the workbook or worksheet to JSON. Default value is false.

public bool IgnoreFormula { get; set; }

Property Value

bool

IgnoreRangeOutOfRowColumnCount

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; }

Property Value

bool

IgnoreSheets

Gets or sets whether to ignore the sheets when exporting to JSON. Default value is false.

public bool IgnoreSheets { get; set; }

Property Value

bool

IgnoreStyle

Whether to ignore the style when serialize the workbook or worksheet to JSON. Default value is false.

public bool IgnoreStyle { get; set; }

Property Value

bool