Skip to main content

HtmlEditorToolbar.Items Property

Gets the collection of items within the toolbar and provides indexed access to them.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

NuGet Package: DevExpress.Web

Declaration

public HtmlEditorToolbarItemCollection Items { get; }

Property Value

Type Description
HtmlEditorToolbarItemCollection

A HtmlEditorToolbarItemCollection object representing the collection of the toolbar’s items.

Remarks

The Items property provides access to a collection that contains all the items of the current toolbar. This collection provides standard means to manipulate (add or remove) items within a toolbar. A particular item can be accessed using index notation (the Collection<T>.Item property) or found by its display text (the ToolbarItemCollectionBase<T>.FindByText method).

See Also