wpf-devexpress-dot-xpf-dot-navbar-dot-navbargroup-594f2d13.md
Gets the actual scroll mode for a group.
Namespace : DevExpress.Xpf.NavBar
Assembly : DevExpress.Xpf.NavBar.v25.2.dll
NuGet Package : DevExpress.Wpf.NavBar
public ScrollMode ActualScrollMode { get; }
Public ReadOnly Property ActualScrollMode As ScrollMode
| 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.
|
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