GanttToolbarItemBuilder.Name(GanttToolbarItem) Method
Specifies the toolbar item's name. Mirrors the client-side name option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public GanttToolbarItemBuilder Name(
GanttToolbarItem value
)
Parameters
Name | Type | Description |
---|---|---|
value | GanttToolbarItem | 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().Name(GanttToolbarItem.Undo);
})
)
)
See Also