Skip to main content
A newer version of this page is available. .

ToolbarUnderlineButton Class

A default toolbar button that allows the underline text formatting to be applied to the text selected in the design view area.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v19.1.dll

Declaration

public class ToolbarUnderlineButton :
    HtmlEditorToolbarItem

Remarks

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 Underline 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();
    ToolbarUnderlineButton underlineButton = new ToolbarUnderlineButton();
    stToolbar1.Items.Add(underlineButton);
    ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
See Also