[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions.IgnoreFormula

IgnoreFormula Property

IgnoreFormula

Gets or sets whether formulas are ignored when serializing a workbook or worksheet to JSON.

If this property returns true, formula information is excluded from the serialized JSON output. The default value is false.

Declaration
public bool IgnoreFormula { get; set; }
Public Property IgnoreFormula As Boolean
Examples
SerializationOptions options = new SerializationOptions();
options.IgnoreFormula = true;
bool ignoreFormula = options.IgnoreFormula;