aspnet-devexpress-dot-web-dot-aspxgridsettings-ce92bbba.md
Gets or sets a value specifying the vertical scrollbar’s display mode.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(ScrollBarMode.Hidden)]
public ScrollBarMode VerticalScrollBarMode { get; set; }
<DefaultValue(ScrollBarMode.Hidden)>
Public Property VerticalScrollBarMode As ScrollBarMode
| 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.
|
By default, the grid height is dependent on the number of data items (row, card or record) displayed on a page. To reduce the grid’s height, you can display its vertical scrollbar and specify the height of the scrollable area, in pixels. The scrollbar’s visibility is specified by the VerticalScrollBarMode property. The scrollable area’s height is specified by the ASPxGridSettings.VerticalScrollableHeight property.
The horizontal scrollbar display mode can be specified via the ASPxGridSettings.HorizontalScrollBarMode
Note
VerticalScrollBarMode property is set to Auto or Visible), width dimension properties (such as the grid’s ASPxWebControl.Width, its columns’ WebColumnBase.Width, etc.) should be specified.VerticalScrollBarMode properties cannot be changed on a callback.See Also