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