ASPxGridSettings.VerticalScrollBarMode Property
Gets or sets a value specifying the vertical scrollbar’s display mode.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.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. |
Remarks
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
- When scrolling is enabled (the
VerticalScrollBarMode
property is set toAuto
orVisible
), width dimension properties (such as the grid’s ASPxWebControl.Width, its columns’ WebColumnBase.Width, etc.) should be specified. - The ASPxGridSettings.HorizontalScrollBarMode and
VerticalScrollBarMode
properties cannot be changed on a callback.