aspnet-devexpress-dot-web-dot-aspxhtmleditor-cd4be0b0.md
A default toolbar button that allows the strike through text formatting to be applied to 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 ToolbarStrikethroughButton :
HtmlEditorToolbarItem
Public Class ToolbarStrikethroughButton
Inherits HtmlEditorToolbarItem
The ASPxHtmlEditor provides bold, italic and underline formatting for the selected editor’s text by using the Bold (ToolbarBoldButton), Italic (ToolbarItalicButton), Underline (ToolbarUnderlineButton), and Strikethrough ( ToolbarStrikethroughButton ) buttons.
You can add the Strikethrough 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();
ToolbarStrikethroughButton strikeButton = new ToolbarStrikethroughButton();
stToolbar1.Items.Add(strikeButton);
ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
<Toolbars>
<dx:HtmlEditorToolbar Name="StandardToolbar1">
<Items>
<dx:ToolbarStrikethroughButton>
</dx:ToolbarStrikethroughButton>
</Items>
</dx:HtmlEditorToolbar>
</Toolbars>
</dx:ASPxHtmlEditor>
Object StateManager CollectionItem ToolbarItemBase HtmlEditorToolbarItem ToolbarStrikethroughButton
See Also