Skip to main content

BootstrapCardViewToolbarMenuItemCollection.FindAllRecursive(Predicate<BootstrapCardViewToolbarMenuItem>) Method

Returns all elements that match the conditions defined by the specified predicate.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

public IEnumerable<BootstrapCardViewToolbarMenuItem> FindAllRecursive(
    Predicate<BootstrapCardViewToolbarMenuItem> match
)

Parameters

Name Type Description
match Predicate<BootstrapCardViewToolbarMenuItem>

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

Returns

Type Description
IEnumerable<BootstrapCardViewToolbarMenuItem>

A collection of the elements that match the conditions defined by the predicate.

Remarks

The FindAllRecursive method individually passes elements of the current hierarchical collection to a predicate, and returns a collection of elements that match 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