aspnet-devexpress-dot-web-dot-aspxhtmleditor-01b5c34b.md
A default toolbar button that allows the ordered list formatting to be applied to a paragraph whose content is selected in the design view area.
Namespace : DevExpress.Web.ASPxHtmlEditor
Assembly : DevExpress.Web.ASPxHtmlEditor.v25.2.dll
NuGet Package : DevExpress.Web
public class ToolbarInsertOrderedListButton :
HtmlEditorToolbarItem
Public Class ToolbarInsertOrderedListButton
Inherits HtmlEditorToolbarItem
The ASPxHtmlEditor provides creating ordered and bulleted lists by using the Ordered List ( ToolbarInsertOrderedListButton ) and Bullet List (ToolbarInsertUnorderedListButton) buttons.
You can add the Ordered List button to toolbars by using either the ASPxHtmlEditor designer at design time, or programmatically.
protected void Page_Load(object sender, EventArgs e) {
HtmlEditorToolbar stToolbar1 = HtmlEditorToolbar.CreateStandardToolbar1();
ToolbarInsertOrderedListButton olButton = new ToolbarInsertOrderedListButton();
stToolbar1.Items.Add(olButton);
ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
<Toolbars>
<dx:HtmlEditorToolbar Name="StandardToolbar1">
<Items>
<dx:ToolbarInsertOrderedListButton>
</dx:ToolbarInsertOrderedListButton>
</Items>
</dx:HtmlEditorToolbar>
</Toolbars>
</dx:ASPxHtmlEditor>
Object StateManager CollectionItem ToolbarItemBase HtmlEditorToolbarItem ToolbarInsertOrderedListButton
See Also