Class TreeGridFilterChangingEventArgs
Provides data for FilterChanging events.
Namespace: Syncfusion.UI.Xaml.TreeGrid.Filtering
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class TreeGridFilterChangingEventArgs : GridHandledEventArgs
Constructors
TreeGridFilterChangingEventArgs(TreeGridColumn, List<FilterPredicate>, Object)
Initializes a new instance of TreeGridFilterChangingEventArgs class.
Declaration
public TreeGridFilterChangingEventArgs(TreeGridColumn column, List<FilterPredicate> filterpredicates, object originalSource)
Parameters
Type | Name | Description |
---|---|---|
TreeGridColumn | 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 TreeGridColumn related to the filter operation.
Declaration
public TreeGridColumn Column { get; }
Property Value
Type |
---|
TreeGridColumn |
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 |
---|
System.Collections.Generic.List<FilterPredicate> |