[]
Gets or sets whether formulas are included when loading a SpreadJS .sjs file.
This option indicates whether formula information in the .sjs file is loaded. The default value is true.
public bool IncludeFormulas { get; set; }
Public Property IncludeFormulas As Boolean
SjsOpenOptions openOptions = new SjsOpenOptions();
openOptions.IncludeFormulas = false;
bool includeFormulas = openOptions.IncludeFormulas;