[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.XlsxSaveOptions.IncludeBindingSource

IncludeBindingSource Property

IncludeBindingSource

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.

Declaration
public bool IncludeBindingSource { get; set; }
Public Property IncludeBindingSource As Boolean
Examples
XlsxSaveOptions options = new XlsxSaveOptions();
options.IncludeBindingSource = false;
bool includeBindingSource = options.IncludeBindingSource;
workbook.Save("path/to/output.xlsx", options);