[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.DeserializationOptions.IgnoreFormula

IgnoreFormula Property

IgnoreFormula

Gets or sets whether formulas are ignored when deserializing a workbook or worksheet from JSON.

If this property is true, formula information in the JSON data is ignored during deserialization. The default value is false.

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