DiagramCustomCommandBuilder.Location(ToolbarItemLocation) Method
In This Article
Specifies a location for the command or separator on the main toolbar. Mirrors the client-side location option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public DiagramCustomCommandBuilder Location(
ToolbarItemLocation value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Toolbar |
The option value. |
#Returns
Type | Description |
---|---|
Diagram |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Diagram()
.MainToolbar(toolbar => toolbar
.Commands(commands => {
commands.Add().Name(DiagramCommand.Bold).Location(ToolbarItemLocation.Center);
})
)
)
See Also