BootstrapGridViewToolbarItemCollection.FindAll(Predicate<BootstrapGridViewToolbarItem>) Method
Returns all elements that match the conditions defined by the specified predicate.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v25.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
public IEnumerable<BootstrapGridViewToolbarItem> FindAll(
Predicate<BootstrapGridViewToolbarItem> match
)
Parameters
| Name | Type | Description |
|---|---|---|
| match | Predicate<BootstrapGridViewToolbarItem> | A delegate that defines the conditions of the elements to search for. |
Returns
| Type | Description |
|---|---|
| IEnumerable<BootstrapGridViewToolbarItem> | A collection of the elements that match the conditions defined by the predicate. |
See Also