Skip to main content
A newer version of this page is available. .

NavBarGroup.GroupScrollMode Property

Gets or sets how a specific NavBar group is scrolled, using a scroll bar or scroll buttons.

Namespace: DevExpress.Xpf.NavBar

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

Declaration

public ScrollMode? GroupScrollMode { get; set; }

Property Value

Type Description
Nullable<ScrollMode>

A nullable ScrollMode value.

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 how navbar groups should be scrolled, via the attached ScrollingSettings.ScrollMode property, which is applicable to the NavBarControl.View object. The GroupScrollMode property allows you to override scroll mode for individual groups. If this property is set to null, a group’s scroll mode is specified by the View’s ScrollMode attached property. Otherwise, the group’s scroll mode is specified by the GroupScrollMode property.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GroupScrollMode property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also