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

FilterControl.FilterChanged Event

Occurs after filter criteria in the FilterControl have been modified.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Property Changed")]
public event FilterChangedEventHandler FilterChanged

Event Data

The FilterChanged event's data class is DevExpress.XtraEditors.FilterChangedEventArgs.

Remarks

The FilterChanged event allows you to receive notifications when filter criteria are changed. The action that caused the current modification is specified by the event’s Action parameter. The changed node is refered to by the CurrentNode parameter. In specific instances, the CurrentNode can contain null (for instance, when all nodes are cleared).

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the FilterChanged event.

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.

See Also