ComponentOne DataGrid for WPF and Silverlight
C1.WPF.DataGrid Namespace / C1DataGrid Class / FilterChanging Event

In This Topic
    FilterChanging Event
    In This Topic
    Occurs before the filter state of C1DataGrid is changed.
    Syntax
    'Declaration
     
    
    Public Event FilterChanging As EventHandler(Of DataGridFilterChangingEventArgs)
    public event 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