windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-28ff1ae1.md
Provides data for the ColumnView.ShowFilterPopupListBox event.
Namespace : DevExpress.XtraGrid.Views.Grid
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
public class FilterPopupListBoxEventArgs :
FilterPopupEventArgs
Public Class FilterPopupListBoxEventArgs
Inherits FilterPopupEventArgs
FilterPopupListBoxEventArgs is the data class for the following events:
The ColumnView.ShowFilterPopupListBox event fires before displaying a column’s filter dropdown list. It enables you to add your own items to the dropdown and delete existing items. Thus, the FilterPopupListBoxEventArgs class declares the FilterPopupListBoxEventArgs.ComboBox property that allows you to access the items list. You can also identify the column whose dropdown list is about to be displayed. Use the Column property for this purpose.
FilterPopupListBoxEventArgs objects are automatically created and passed to ColumnView.ShowFilterPopupListBox event handlers.
Object EventArgs FilterPopupEventArgs FilterPopupListBoxEventArgs
See Also