Skip to main content
A newer version of this page is available. .

MVCxHtmlEditorToolbarItemCollection Class

A collection of toolbar item objects.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.1.dll

Declaration

public class MVCxHtmlEditorToolbarItemCollection :
    HtmlEditorToolbarItemCollection

The following members return MVCxHtmlEditorToolbarItemCollection objects:

Remarks

Each toolbar within an HtmlEditor control holds its toolbar items within a collection which is specified by an instance of the MVCxHtmlEditorToolbarItemCollection class and can be accessed via the MVCxHtmlEditorToolbar.Items property.

The properties and methods exposed by the MVCxHtmlEditorToolbarItemCollection 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 specified 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