ScrollBarMode Enum
Lists values that specify a scroll bar’s display mode.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v23.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public enum ScrollBarMode
Members
Name | Description |
---|---|
Auto
|
The component automatically shows a scrollbar when the content size exceeds the component size itself. |
Hidden
|
The scrollbar is hidden. |
Visible
|
The scrollbar is visible. |
Related API Members
The following properties accept/return ScrollBarMode values:
Remarks
Horizontal scroll bar:
Note
You should specify the Width property for all Data Grid columns to enable the horizontal scroll bar.
Vertical scroll bar:
<DxDataGrid Data="@DataSource"
HorizontalScrollBarMode="ScrollBarMode.Visible"
VerticalScrollBarMode="ScrollBarMode.Auto"
VerticalScrollableHeight="300">
@* ... *@
</DxDataGrid>