Skip to main content
A newer version of this page is available. .
All docs
V23.1

IComboBoxSettings.Data Property

Specifies the object that supplies combo box data.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(null)]
[Parameter]
object Data { get; set; }

Property Value

Type Default Description
Object null

A data collection that implements the IEnumerable<T> interface.

Remarks

Use the Data property to change the object that supplies combo box data at runtime. To specify the data source in markup, use the DxComboBoxSettings.Data property.

See Also