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

HtmlEditorToolbarCollection Class

Represents a collection of toolbar objects.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

Declaration

public class HtmlEditorToolbarCollection :
    Collection<HtmlEditorToolbar>

The following members return HtmlEditorToolbarCollection objects:

Remarks

The APSxHtmlEditor control holds its toolbars within a collection which is represented by an instance of the HtmlEditorToolbarCollection class, and can be accessed via the ASPxHtmlEditor.Toolbars property.

The properties and methods exposed by the HtmlEditorToolbarCollection class can be used to perform common collection operations such as adding new or deleting the existing toolbars. Each item of the collection is represented by a HtmlEditorToolbar object descendant. Individual toolbars can be accessed using either indexer notation or by their display names (HtmlEditorToolbarCollection.Item).

See Also