Skip to main content

TreeListSettings.VerticalScrollBarMode Property

Gets or sets a value specifying the vertical scrollbar’s display mode.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(ScrollBarMode.Hidden)]
public ScrollBarMode VerticalScrollBarMode { get; set; }

Property Value

Type Default Description
ScrollBarMode Hidden

One of the ScrollBarMode enumeration values.

Available values:

Name Description
Hidden

The scrollbar is hidden.

Visible

The scrollbar is visible.

Auto

The scrollbar is automatically shown when the size of the control content exceeds the size of the control itself.

Property Paths

You can access this nested property as listed below:

Object Type Path to VerticalScrollBarMode
ASPxTreeList
.Settings .VerticalScrollBarMode

Remarks

Use the VerticalScrollBarMode property to specify the vertical scrollbar’s display mode. The height of the control scrollable area can be specified via the TreeListSettings.ScrollableHeight property.

The horizontal scrollbar display mode can be specified via the TreeListSettings.HorizontalScrollBarMode

See Also