[]
Gets or sets whether formulas can be included when saving the file.
The default value is true.
public bool IncludeFormulas { get; set; }
Public Property IncludeFormulas As Boolean
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeFormulas = false;
bool includeFormulas = options.IncludeFormulas;
workbook.Save("path/to/output.sjs", options);