Skip to main content
A newer version of this page is available. .

TreeListSettings.HorizontalScrollBarMode Property

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

Namespace: DevExpress.Web.ASPxTreeList

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

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
MVCxTreeList
.Settings.HorizontalScrollBarMode
TreeListSettings
.Settings.HorizontalScrollBarMode
TreeListSettings<RowType>
.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