Skip to main content
A newer version of this page is available. .

BootstrapTreeViewNodeCollection.FindRecursive(Predicate<BootstrapTreeViewNode>) Method

Returns the first element that matches the conditions defined by the specified predicate.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.1.dll

Declaration

public BootstrapTreeViewNode FindRecursive(
    Predicate<BootstrapTreeViewNode> match
)

Parameters

Name Type Description
match Predicate<BootstrapTreeViewNode>

A delegate that defines the conditions of the elements to search for.

Returns

Type Description
BootstrapTreeViewNode

A BootstrapTreeViewNode that matches the conditions defined by the predicate.

Remarks

The FindRecursive method individually passes elements of the current hierarchical collection to a predicate, and returns the first element that matches the predicate. A predicate is a delegate to a method that returns true if the object passed to it matches the conditions defined in the delegate; otherwise the method returns false.

See Also