[]
Gets or sets whether shared formulas are exported when serializing a workbook or worksheet to JSON.
The default value is true. Set this option to false to omit shared
formulas from the exported JSON, which can be useful for backward compatibility with
earlier product versions or SpreadJS versions that do not support shared formulas.
public bool ExportSharedFormula { get; set; }
Public Property ExportSharedFormula As Boolean
SerializationOptions options = new SerializationOptions();
options.ExportSharedFormula = false;
bool exportSharedFormula = options.ExportSharedFormula;