Class TreeGridFilterChangedEventArgs
Provides data for FilterChanged events.
Inherited Members
Namespace: Syncfusion.UI.Xaml.TreeGrid.Filtering
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class TreeGridFilterChangedEventArgs : GridEventArgs
Constructors
TreeGridFilterChangedEventArgs(TreeGridColumn, List<FilterPredicate>, Object)
Initializes a new instance of TreeGridFilterChangedEventArgs class.
Declaration
public TreeGridFilterChangedEventArgs(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> |