TreeList.FindNodes(Predicate<TreeListNode>) Method
In This Article
Returns all nodes that match the specific criteria.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public TreeListNode[] FindNodes(
Predicate<TreeListNode> match
)
#Parameters
Name | Type | Description |
---|---|---|
match | Predicate<Tree |
A Predicate that specifies the search criteria. |
#Returns
Type | Description |
---|---|
Tree |
An array of the Tree |
#Remarks
The code below illustrates how to return all nodes whose display text for the first TreeListColumn starts with the word “Market”.
TreeListNode[] collection = treeList1.FindNodes(x => x.GetDisplayText(0).StartsWith("Market"));
See Also