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

ToolbarOutdentButton Class

A default toolbar button that allows the outdent formatting to be applied to a paragraph whose content is selected in the design view area.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ToolbarOutdentButton :
    HtmlEditorToolbarItem

Remarks

The ASPxHtmlEditor provides text indentation by using the Indent (ToolbarIndentButton) and Outdent (ToolbarOutdentButton) buttons.

You can add the Outdent 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;
    ToolbarOutdentButton outdentButton = new ToolbarOutdentButton();
    stToolbar1.Items.Add(outdentButton);
    ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
See Also