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

PivotGridWebOptionsView.VerticalScrollBarMode Property

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

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v19.1.dll

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
ASPxPivotGrid
.OptionsView.VerticalScrollBarMode
MVCxPivotGrid
.OptionsView.VerticalScrollBarMode
PivotGridSettings
.OptionsView.VerticalScrollBarMode

Remarks

Important

To use the vertical scroll bar, set the pivot grid height using the ASPxWebControl.Height property.

Use the VerticalScrollBarMode property to control the visibility of the vertical scroll bar in the control. To customize the scrolling mode, use the PivotGridWebOptionsView.VerticalScrollingMode property.

The horizontal scroll bar mode can be specified with the PivotGridWebOptionsView.HorizontalScrollBarMode property.

See Also