[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SjsSaveOptions.IncludeFormulas

IncludeFormulas Property

IncludeFormulas

Gets or sets whether formulas can be included when saving the file.

The default value is true.

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

bool includeFormulas = options.IncludeFormulas;
workbook.Save("path/to/output.sjs", options);