Skip to main content

StepProgressBar.ScrollMode Property

Gets or sets the scrollbar style. Step Progress Bar displays a scroll bar when its LayoutMode setting is Fixed, and there is not enough space to display all of the control items.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DefaultValue(ScrollMode.Default)]
[DXCategory("Behavior")]
public ScrollMode ScrollMode { get; set; }

Property Value

Type Default Description
ScrollMode Default

The scrollbar style.

Available values:

Name Description
Default

The same as Fluent scroll mode.

Visible

The application’s default scrollbar. The scrollbar is always visible.

Use the ScrollUIMode property to change the application’s scroll bar style.

Auto

The application’s default scrollbar. The scrollbar is visible if the items don’t fit inside the step progress bar.

Use the ScrollUIMode property to change the application’s scroll bar style.

Hidden

Hides the scrollbar.

Touch

This member is not supported.

Fluent

The Fluent Design-inspired scroll bar.

Remarks

The default behavior displays the scroll bar if the items do not fit inside the step progress bar. Use the LayoutMode property to manage the distribution of items inside the control.

See Also