DiagramCustomCommandBuilder.Name(DiagramCommand) Method
Specifies the custom command's identifier. Mirrors the client-side name option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public DiagramCustomCommandBuilder Name(
DiagramCommand value
)
Parameters
Name | Type | Description |
---|---|---|
value | DiagramCommand | The option value. |
Returns
Type | Description |
---|---|
DiagramCustomCommandBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Diagram()
.ContextMenu(menu => menu
.Commands(commands => {
commands.Add().Name(DevExtreme.AspNet.Mvc.DiagramCommand.Bold);
})
)
)
See Also