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

NavBarGroup.ActualScrollMode Property

Gets the actual scroll mode for a group.

Namespace: DevExpress.Xpf.NavBar

Assembly: DevExpress.Xpf.NavBar.v24.2.dll

NuGet Package: DevExpress.Wpf.NavBar

#Declaration

public ScrollMode ActualScrollMode { get; }

#Property Value

Type Description
ScrollMode

A ScrollMode value that specifies how a NavBar group is scrolled.

Available values:

Name Description
Buttons

A specific NavBar object is scrolled via scroll buttons.

ScrollBar

A specific NavBar object is scrolled via a Scroll Bar.

None

No visual scrolling elements are displayed.

#Remarks

You can specify the scroll mode for all groups via the ScrollingSettings.ScrollMode attached property, and for individual groups via the NavBarGroup.GroupScrollMode property. The NavBarGroup.GroupScrollMode property has a higher priority. To get the actual scroll mode for a group, use the ActualScrollMode property.

See Also