[]
Gets or sets whether binding sources are included when a workbook or worksheet is serialized to JSON.
If this property is true, bound data sources are included in the serialized JSON output.
If this property is false, binding source information is not included. The default value is true.
public bool IncludeBindingSource { get; set; }
Public Property IncludeBindingSource As Boolean
SerializationOptions options = new SerializationOptions();
options.IncludeBindingSource = false;
bool includeBindingSource = options.IncludeBindingSource;