BootstrapCardViewToolbarMenuItemCollection.ForEach(Action<BootstrapCardViewToolbarMenuItem>) Method
Performs the specified action on each element of the BootstrapCardViewToolbarMenuItemCollection.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v25.1.dll
NuGet Package: DevExpress.Web.Bootstrap
Declaration
public BootstrapCardViewToolbarMenuItemCollection ForEach(
Action<BootstrapCardViewToolbarMenuItem> action
)
Parameters
| Name | Type | Description |
|---|---|---|
| action | Action<BootstrapCardViewToolbarMenuItem> | The Action<T> delegate to perform on each element of the BootstrapCardViewToolbarMenuItemCollection. |
Returns
| Type | Description |
|---|---|
| BootstrapCardViewToolbarMenuItemCollection | A BootstrapCardViewToolbarMenuItemCollection object that represents the processed item collection. |
Remarks
The Action<T> is a delegate to a method that performs an action on the object passed to it. The elements of the current BootstrapCardViewToolbarMenuItemCollection are individually passed to the Action<T> delegate.
See Also