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

FilterPopupListBoxEventArgs Class

Provides data for the ColumnView.ShowFilterPopupListBox event.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v17.2.dll

Declaration

public class FilterPopupListBoxEventArgs :
    FilterPopupEventArgs

Remarks

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.

The following code snippets (auto-collected from DevExpress Examples) contain references to the FilterPopupListBoxEventArgs class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

Object
EventArgs
FilterPopupEventArgs
FilterPopupListBoxEventArgs
See Also