Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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