Class GridFilterEventArgs
Provides data for FilterChanging and FilterChanged events.
Namespace: Syncfusion.UI.Xaml.Grid
Assembly: Syncfusion.SfGrid.UWP.dll
Syntax
public class GridFilterEventArgs : GridHandledEventArgsConstructors
GridFilterEventArgs(GridColumn, List<FilterPredicate>, Object)
Initializes a new instance of GridFilterEventArgs class.
Declaration
public GridFilterEventArgs(GridColumn column, List<FilterPredicate> filterpredicates, object originalSource)Parameters
| Type | Name | Description | 
|---|---|---|
| GridColumn | column | The column related to the filter operation. | 
| System.Collections.Generic.List<FilterPredicate> | filterpredicates | The list of filter predicates collection. | 
| System.Object | originalSource | The source of the event. | 
Properties
Column
Gets the GridColumn related to the filter operation.
Declaration
public GridColumn Column { get; }Property Value
| Type | Description | 
|---|---|
| GridColumn | A GridColumn that represents the column that is being filtered. | 
FilterPredicates
Gets the list of filter predicates that defines a set of criteria to filter the data.
Declaration
public List<FilterPredicate> FilterPredicates { get; }Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.List<FilterPredicate> | The list of FilterPredicate collection. |