Skip to main content

ASPxHtmlEditor.Toolbars Property

Gets the collection of toolbars in the ASPxHtmlEditor control.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

NuGet Package: DevExpress.Web

Declaration

public HtmlEditorToolbarCollection Toolbars { get; }

Property Value

Type Description
HtmlEditorToolbarCollection

A HtmlEditorToolbarCollection object which represents the collection of toolbars within the editor.

Remarks

When the ASPxHtmlEditor.ToolbarMode property is set to Menu, the ASPxHtmlEditor displays a Menu as a toolbar. In this case, use the Toolbars property to access a collection of toolbars within the ASPxHtmlEditor control. The collection is represented by an instance of the HtmlEditorToolbarCollection class, and allows individual toolbars (which are descendants of the HtmlEditorToolbar class) to be added, deleted and accessed using either an indexer notation or their names (see the HtmlEditorToolbarCollection.Item property).

See Also