aspnet-devexpress-dot-web-dot-aspxhtmleditor-ba66410f.md
A default toolbar button that allows text formatting to be removed from the text selected in the design view area.
Namespace : DevExpress.Web.ASPxHtmlEditor
Assembly : DevExpress.Web.ASPxHtmlEditor.v25.2.dll
NuGet Package : DevExpress.Web
public class ToolbarRemoveFormatButton :
HtmlEditorToolbarItem
Public Class ToolbarRemoveFormatButton
Inherits HtmlEditorToolbarItem
The ASPxHtmlEditor allows end-users to remove formatting (i.e. remove all attributes) from the editor’s content by using the Remove Format ( ToolbarRemoveFormatButton ) button.
You can add the Remove Format 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();
ToolbarRemoveFormatButton rfButton = new ToolbarRemoveFormatButton();
stToolbar1.Items.Add(rfButton);
ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
<Toolbars>
<dx:HtmlEditorToolbar Name="StandardToolbar1">
<Items>
<dx:ToolbarRemoveFormatButton BeginGroup="True">
</dx:ToolbarRemoveFormatButton>
</Items>
</dx:HtmlEditorToolbar>
</Toolbars>
</dx:ASPxHtmlEditor>
Object StateManager CollectionItem ToolbarItemBase HtmlEditorToolbarItem ToolbarRemoveFormatButton
See Also