[]
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.
public bool IgnoreFormula { get; set; }
Public Property IgnoreFormula As Boolean
SerializationOptions options = new SerializationOptions();
options.IgnoreFormula = true;
bool ignoreFormula = options.IgnoreFormula;