[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SaveOptions.IgnoreFormulas

IgnoreFormulas Property

IgnoreFormulas

Gets or sets whether formula cells are treated as value cells when saving the workbook.

When this property is true, formula cells are exported as value cells instead of preserving their formulas.

Declaration
public bool IgnoreFormulas { get; set; }
Public Property IgnoreFormulas As Boolean
Examples
SaveOptions options = new SaveOptions();
options.IgnoreFormulas = true;
bool ignoreFormulas = options.IgnoreFormulas;
workbook.Save("path/to/output.xlsx", options);