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

ToolbarJustifyFullButton Class

A default toolbar button that allows a paragraph whose content is selected in the design view area to be fully justified (aligned with both the left and right margins).

Namespace: DevExpress.Web.ASPxHtmlEditor

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

Declaration

public class ToolbarJustifyFullButton :
    HtmlEditorToolbarItem

Remarks

The ASPxHtmlEditor provides alignment formatting for the selected editor’s paragraph by using the Align Left (ToolbarJustifyLeftButton), Align Right (ToolbarJustifyRightButton), Align Center (ToolbarJustifyCenterButton) and Justify (ToolbarJustifyFullButton) buttons.

You can add these buttons 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();
    ToolbarJustifyLeftButton ljButton = new ToolbarJustifyLeftButton();
    ToolbarJustifyRightButton rjButton = new ToolbarJustifyRightButton();
    ToolbarJustifyCenterButton cjButton = new ToolbarJustifyCenterButton();
    ToolbarJustifyFullButton fjButton = new ToolbarJustifyFullButton();
    stToolbar1.Items.Add(ljButton);
    stToolbar1.Items.Add(rjButton);
    stToolbar1.Items.Add(cjButton);
    stToolbar1.Items.Add(fjButton);
    ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
See Also