[]
Represents options for opening a SpreadJS .sjs file.
Use this class with workbook open APIs when loading an .sjs file.
A new SjsOpenOptions instance sets the file format to
Sjs. By default, styles and formulas are included
when the file is loaded.
public class SjsOpenOptions : OpenOptionsBase
Public Class SjsOpenOptions
Inherits OpenOptionsBase
SjsOpenOptions openOptions = new SjsOpenOptions();
openOptions.IncludeStyles = false;
openOptions.IncludeFormulas = true;
workbook.Open("path/to/file.sjs", openOptions);
| Name | Description |
|---|---|
| SjsOpenOptions() | Constructor. |
| Name | Description |
|---|---|
| IncludeFormulas | Gets or sets whether formulas are included when loading a SpreadJS
This option indicates whether formula information in the |
| IncludeStyles | Gets or sets whether styles are included when loading a SpreadJS
This option controls whether style information in the |
| InvalidFormulaHandling | Gets or sets how invalid formulas are handled when opening a SpreadJS |