[]
Gets or sets whether to include the binding source when saving the file.
This option controls whether bound data is exported when the workbook is saved to SpreadJS .sjs format. The default value is true.
public bool IncludeBindingSource { get; set; }
Public Property IncludeBindingSource As Boolean
SjsSaveOptions options = new SjsSaveOptions();
options.IncludeBindingSource = false;
bool includeBindingSource = options.IncludeBindingSource;
workbook.Save("path/to/output.sjs", options);