Skip to main content

FilterPopupListBoxEventArgs.ComboBox Property

Gets an object providing access to the filter dropdown’s items.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public RepositoryItemComboBox ComboBox { get; }

Property Value

Type Description
RepositoryItemComboBox

A RepositoryItemComboBox object that allows you to access the filter items list.

Remarks

Use the returned object’s RepositoryItemComboBox.Items property to access the list of items to be displayed within the filter dropdown. This property returns a collection object whose properties can be used to add, delete and access individual items. This collection’s items are represented by FilterItem objects.

Note: you can also use the ComboBox property to customize the dropdown list’s appearance. Please refer to the RepositoryItemComboBox class description for details.

See Also