[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.SerializationOptions.IncludeBindingSource

IncludeBindingSource Property

IncludeBindingSource

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.

Declaration
public bool IncludeBindingSource { get; set; }
Public Property IncludeBindingSource As Boolean
Examples
SerializationOptions options = new SerializationOptions();
options.IncludeBindingSource = false;
bool includeBindingSource = options.IncludeBindingSource;