Skip to main content

HtmlEditorToolbarItemCollection Class

Represents a collection of toolbar item objects.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

NuGet Package: DevExpress.Web

Declaration

public class HtmlEditorToolbarItemCollection :
    ToolbarItemCollectionBase<HtmlEditorToolbarItem>

The following members return HtmlEditorToolbarItemCollection objects:

Remarks

Each toolbar within an APSxHtmlEditor control holds its toolbar items within a collection which is represented by an instance of the HtmlEditorToolbarItemCollection class and can be accessed via the HtmlEditorToolbar.Items property.

The properties and methods exposed by the HtmlEditorToolbarItemCollection class can be used to perform common collection operations such as adding new or deleting the existing toolbar items. Each item of the collection is represented by a HtmlEditorToolbarItem object descendant. Individual toolbar items can be accessed using either indexer notation (Collection<T>.Item) or by their display texts (ToolbarItemCollectionBase<T>.FindByText).

See Also