Skip to main content

GanttToolbarItemBuilder.Visible(Boolean) Method

Specifies whether or not a UI component item must be displayed. Mirrors the client-side visible option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public GanttToolbarItemBuilder Visible(
    bool value
)

Parameters

Name Type Description
value Boolean

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().Visible(false)
        })
    )
)
See Also