[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions.ExportSharedFormula

ExportSharedFormula Property

ExportSharedFormula

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.

Declaration
public bool ExportSharedFormula { get; set; }
Public Property ExportSharedFormula As Boolean
Examples
SerializationOptions options = new SerializationOptions();
options.ExportSharedFormula = false;
bool exportSharedFormula = options.ExportSharedFormula;