Skip to main content
All docs
V25.1
  • DiagramCustomCommandBuilder.Location(ToolbarItemLocation) Method

    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

    public DiagramCustomCommandBuilder Location(
        ToolbarItemLocation value
    )

    Parameters

    Name Type Description
    value ToolbarItemLocation

    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()
        .MainToolbar(toolbar => toolbar
            .Commands(commands => {
                commands.Add().Name(DiagramCommand.Bold).Location(ToolbarItemLocation.Center);
            })
        )
    )
    
    See Also