Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

FilterPopupListBoxEventArgs.ComboBox Property

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

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.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