HtmlEditorToolbarItemCollection.ForEach(Action<HtmlEditorToolbarItem>) Method
In This Article
Performs the specified action on each element of the HtmlEditorToolbarItemCollection.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public HtmlEditorToolbarItemCollection ForEach(
Action<HtmlEditorToolbarItem> action
)
#Parameters
Name | Type | Description |
---|---|---|
action | Action<Html |
The Action |
#Returns
Type | Description |
---|---|
Html |
A Html |
#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 HtmlEditorToolbarItemCollection are individually passed to the Action<T> delegate.
See Also