Skip to main content
A newer version of this page is available. .

BootstrapComboBox.Fields Property

Provides access to a ComboBox’s field collection.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v18.2.dll

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
[Themeable(false)]
public BootstrapListBoxFieldCollection Fields { get; }

Property Value

Type Description
BootstrapListBoxFieldCollection

A BootstrapListBoxFieldCollection object which represents a collection of all the fields within a ComboBox.

Remarks

This property stores all the fields present in the ComboBox control. It allows you to add and delete fields using the appropriate methods.

Individual fields can be accessed using indexed notation or the bound field name as parameters. If the bound field name is used as an indexer and there are several fields with the same name, the first field found in the collection will be returned.

This property is a wrapper of the BootstrapComboBoxProperties.Fields property. Please refer to its description for more information.

See Also