RibbonButtonItemBuilder.CommandName(String) Method
Sets the command name associated with the item.
Namespace: DevExpress.AspNetCore.Office
Assembly: DevExpress.AspNetCore.Common.v24.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 |
---|---|
Ribbon |
An object that can be used to further configure the ribbon item. |
#Remarks
For a full example, see Ribbon Customization demo.
@(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")
)