General Information
.NET Subscription
Desktop
Web
Controls and Extensions
Mainteinance Mode
Enterprise and Analytic Tools
Quality Assurance and Productivity
Frameworks and Libraries
All docs
V19.2
General Information
.NET Subscription
Desktop
Web
Controls and Extensions
Mainteinance Mode
Enterprise and Analytic Tools
Quality Assurance and Productivity
Frameworks and Libraries
19.2
19.1
18.2
18.1
17.2
ToolbarInsertUnorderedListButton Class
A default toolbar button that allows the unordered 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.v19.2.dll
Declaration
public class ToolbarInsertUnorderedListButton :
HtmlEditorToolbarItem
Public Class ToolbarInsertUnorderedListButton
Inherits HtmlEditorToolbarItem
Remarks
The ASPxHtmlEditor provides creating ordered and bulleted lists by using the Ordered List (ToolbarInsertOrderedListButton) and Bullet List (ToolbarInsertUnorderedListButton) buttons.
You can add the Bullet 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();
ToolbarInsertUnorderedListButton uolButton = new ToolbarInsertUnorderedListButton();
stToolbar1.Items.Add(uolButton);
ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
<Toolbars>
<dx:HtmlEditorToolbar Name="StandardToolbar1">
<Items>
<dx:ToolbarInsertUnorderedListButton>
</dx:ToolbarInsertUnorderedListButton>
</Items>
</dx:HtmlEditorToolbar>
</Toolbars>
</dx:ASPxHtmlEditor>
Inheritance
Object
StateManager
CollectionItem
ToolbarItemBase
HtmlEditorToolbarItem
ToolbarInsertUnorderedListButton
See Also
Feedback