Class FilteredEventArgs
Provides data for the Filtered event.
Inheritance
System.Object
FilteredEventArgs
Namespace: Syncfusion.Maui.TreeView
Assembly: Syncfusion.Maui.TreeView.dll
Syntax
public class FilteredEventArgs : EventArgs
Remarks
This event is raised after the filter operation completes, providing metrics and diagnostic information.
Constructors
FilteredEventArgs()
Initializes a new instance of the FilteredEventArgs class.
Declaration
public FilteredEventArgs()
Properties
FilterMode
Gets the filter mode that was applied.
Declaration
public TreeViewFilterMode FilterMode { get; }
Property Value
| Type | Description |
|---|---|
| TreeViewFilterMode | The TreeViewFilterMode that was used for filtering. |
FilterText
Gets the filter text that was applied.
Declaration
public string FilterText { get; }
Property Value
| Type | Description |
|---|---|
| System.String | The text used for built-in text filtering modes. May be null or empty. |
MatchCount
Gets the total number of nodes that matched the filter criteria.
Declaration
public int MatchCount { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The count of matched nodes. |