aspnet-devexpress-dot-web-dot-aspxhtmleditor-99c53fb6.md
Represents a collection of toolbar item objects.
Namespace : DevExpress.Web.ASPxHtmlEditor
Assembly : DevExpress.Web.ASPxHtmlEditor.v25.2.dll
NuGet Package : DevExpress.Web
public class HtmlEditorToolbarItemCollection :
ToolbarItemCollectionBase<HtmlEditorToolbarItem>
Public Class HtmlEditorToolbarItemCollection
Inherits ToolbarItemCollectionBase(Of HtmlEditorToolbarItem)
The following members return HtmlEditorToolbarItemCollection objects:
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).
DevExpress.Utils.IAssignableCollection
ICollection<HtmlEditorToolbarItem>
IEnumerable<HtmlEditorToolbarItem>
Object StateManagedCollectionBase Collection Collection<HtmlEditorToolbarItem> ToolbarItemCollectionBase<HtmlEditorToolbarItem> HtmlEditorToolbarItemCollection MVCxHtmlEditorToolbarItemCollection
See Also