[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.XlsxSaveOptions.ExportSharedFormula

ExportSharedFormula Property

ExportSharedFormula

Gets or sets whether to export shared formulas when saving the workbook.

Shared formula export is enabled by default. This option can be useful when working with third-party libraries that do not support shared formulas.

Declaration
public bool ExportSharedFormula { get; set; }
Public Property ExportSharedFormula As Boolean
Examples
XlsxSaveOptions options = new XlsxSaveOptions();
options.ExportSharedFormula = false;
bool exportSharedFormula = options.ExportSharedFormula;
workbook.Save("path/to/output.xlsx", options);