Skip to main content

TreeViewBuilder.ScrollDirection(ScrollDirection) Method

A string value specifying available scrolling directions. Mirrors the client-side scrollDirection option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public TreeViewBuilder ScrollDirection(
    ScrollDirection value
)

Parameters

Name Type Description
value ScrollDirection

The option value.

Returns

Type Description
TreeViewBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().TreeView()
    .ScrollDirection(ScrollDirection.Both)
)
See Also