[]
Gets or sets whether styles are included when saving files.
This option controls whether style information is written when exporting to the SpreadJS .sjs format. The default value is true.
public bool IncludeStyles { get; set; }
Public Property IncludeStyles As Boolean
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeStyles = false;
bool includeStyles = options.IncludeStyles;
workbook.Save("path/to/output.sjs", options);