[]
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. The default value is true.
public bool IncludeBindingSource { get; set; }
Public Property IncludeBindingSource As Boolean
XlsxSaveOptions options = new XlsxSaveOptions();
options.IncludeBindingSource = false;
bool includeBindingSource = options.IncludeBindingSource;
workbook.Save("path/to/output.xlsx", options);