Back to Devexpress

ToolbarIndentButton Class

aspnet-devexpress-dot-web-dot-aspxhtmleditor-1ec0a3ae.md

latest3.3 KB
Original Source

ToolbarIndentButton Class

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

Namespace : DevExpress.Web.ASPxHtmlEditor

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

NuGet Package : DevExpress.Web

Declaration

csharp
public class ToolbarIndentButton :
    HtmlEditorToolbarItem
vb
Public Class ToolbarIndentButton
    Inherits HtmlEditorToolbarItem

Remarks

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

You can add the Indent button to toolbars by using either the ASPxHtmlEditor designer at design time, or programmatically.

csharp
protected void Page_Load(object sender, EventArgs e) {
        HtmlEditorToolbar stToolbar1 = HtmlEditorToolbar.CreateStandardToolbar1();
        ToolbarIndentButton indentButton = new ToolbarIndentButton();
        stToolbar1.Items.Add(indentButton);
        ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
    }
aspx
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
    <Toolbars>
        <dx:HtmlEditorToolbar Name="StandardToolbar1">
            <Items>
                <dx:ToolbarIndentButton>
                </dx:ToolbarIndentButton>
            </Items>
        </dx:HtmlEditorToolbar>
    </Toolbars>
</dx:ASPxHtmlEditor>

Implements

IStateManager

IPropertiesOwner

IExpressionsAccessor

Inheritance

Object StateManager CollectionItem ToolbarItemBase HtmlEditorToolbarItem ToolbarIndentButton

See Also

ToolbarIndentButton Members

HTML Editor

Default Toolbar Items

Menu Toolbar Items

Html Editor Designer

DevExpress.Web.ASPxHtmlEditor Namespace