ComponentOne DataGrid for WPF and Silverlight
FilterChanging Event (C1DataGrid)

C1.WPF.DataGrid Namespace > C1DataGrid Class : FilterChanging Event
Occurs before the filter state of C1DataGrid is changed.
Syntax
'Declaration
 
Public Event FilterChanging As System.EventHandler(Of DataGridFilterChangingEventArgs)
public event System.EventHandler<DataGridFilterChangingEventArgs> FilterChanging
Event Data

The event handler receives an argument of type DataGridFilterChangingEventArgs containing data related to this event. The following DataGridFilterChangingEventArgs properties provide information specific to this event.

PropertyDescription
(Inherited from System.ComponentModel.CancelEventArgs)
Gets the columns will be filtered if this event is not cancelled.  
Remarks
Filtering state changes when user manipulates the filter included in the column header or when the FilterBy method is called.
See Also