Skip to main content

GanttToolbarItemBuilder.Location(ToolbarItemLocation) Method

Specifies the toolbar item's location. Mirrors the client-side location option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public GanttToolbarItemBuilder Location(
    ToolbarItemLocation value
)

Parameters

Name Type Description
value ToolbarItemLocation

The option value.

Returns

Type Description
GanttToolbarItemBuilder

A reference to this instance after the method is called.

Remarks

@(Html.DevExtreme().Gantt()
    .Toolbar(toolbar => toolbar
        .Items(items => {
            items.Add().location(ToolbarItemLocation.Center)
        })
    )
)
See Also