Skip to main content

TreeListSettings.HorizontalScrollBarMode Property

Gets or sets a value specifying the horizontal 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 HorizontalScrollBarMode { 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 HorizontalScrollBarMode
ASPxTreeList
.Settings .HorizontalScrollBarMode

Remarks

Use the HorizontalScrollBarMode property to specify the horizontal scrollbar’s display mode. The vertical scrollbar display mode can be specified via the TreeListSettings.VerticalScrollBarMode

See Also