Back to Devexpress

ToolbarBoldButton Class

aspnet-devexpress-dot-web-dot-aspxhtmleditor-a68ff8d0.md

latest3.5 KB
Original Source

ToolbarBoldButton Class

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

Namespace : DevExpress.Web.ASPxHtmlEditor

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

NuGet Package : DevExpress.Web

Declaration

csharp
public class ToolbarBoldButton :
    HtmlEditorToolbarItem
vb
Public Class ToolbarBoldButton
    Inherits 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 Bold 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();
    ToolbarBoldButton boldButton = new ToolbarBoldButton();
    stToolbar1.Items.Add(boldButton);
    ASPxHtmlEditor1.Toolbars.Add(stToolbar1);
}
aspx
<dx:ASPxHtmlEditor ID="ASPxHtmlEditor1" runat="server">
    <Toolbars>
        <dx:HtmlEditorToolbar Name="StandardToolbar1">
            <Items>
                <dx:ToolbarBoldButton BeginGroup="True">
                </dx:ToolbarBoldButton>
            </Items>
        </dx:HtmlEditorToolbar>
    </Toolbars>
</dx:ASPxHtmlEditor>

Implements

IStateManager

IPropertiesOwner

IExpressionsAccessor

Inheritance

Object StateManager CollectionItem ToolbarItemBase HtmlEditorToolbarItem ToolbarBoldButton

See Also

ToolbarBoldButton Members

HTML Editor

Default Toolbar Items

Menu Toolbar Items

Html Editor Designer

DevExpress.Web.ASPxHtmlEditor Namespace