Skip to main content

RibbonButtonItemBuilder.CommandName(String) Method

Sets the command name associated with the item.

Namespace: DevExpress.AspNetCore.Office

Assembly: DevExpress.AspNetCore.Common.v23.2.dll

NuGet Package: DevExpress.AspNetCore.Common

Declaration

public RibbonButtonItemBuilder CommandName(
    string value
)

Parameters

Name Type Description
value String

The command name.

Returns

Type Description
RibbonButtonItemBuilder

An object that can be used to further configure the ribbon item.

Remarks

For a full example, see Ribbon Customization demo.

Rich Text Edit - Ribbon Items

@(Html.DevExpress().RichEdit("richEdit")
    .Ribbon(ribbon => ribbon
        .Visible(true)
        .ActiveTabIndex(1)
        .Tabs(tabs => {
            tabs.Clear();
            tabs.AddHomeTab()
            tabs.Add()
                .Title("Email")
                .Items(items => {
                    items.AddButton()
                        .Text("Insert Email Signature")
                        .CommandName("insertEmailSignature")
                        .ShowText(true)
                        .Icon("user");
                    items.AddButton()
                        .Text("Send Email")
                        .CommandName("sendEmail")
                        .ShowText(true)
                        .Icon("email");
                    items.AddPrintDocumentItem().BeginGroup(true);
                    items.AddDownloadDocumentItem();
                });
        })
    )
    .OnCustomCommandExecuted("onCustomCommandExecuted")
)
See Also