ScrollBarMode Enum
Lists values that specify a scrollbar’s display mode.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.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 scrollbar:
Note
You should specify the Width property for all Data Grid columns to enable the horizontal scrollbar.
Vertical scrollbar:
<DxDataGrid Data="@DataSource"
HorizontalScrollBarMode="ScrollBarMode.Visible"
VerticalScrollBarMode="ScrollBarMode.Auto"
VerticalScrollableHeight="300">
@* ... *@
</DxDataGrid>
See Also