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

TabControlScrollView.CanScroll Property

Gets whether the Header Panel can be scrolled.

Namespace: DevExpress.Xpf.Core

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

Declaration

public bool CanScroll { get; }

Property Value

Type Description
Boolean

true if the Header Panel can be scrolled; otherwise, false.

Remarks

Scrolling is available if at least one header is not completely visible. To obtain whether the Header Panel can be scrolled forward or backward, use the TabControlScrollView.CanScrollNext and TabControlScrollView.CanScrollPrev properties, respectively.

To scroll the Header Panel in code, use the TabControlScrollView.ScrollNext, TabControlScrollView.ScrollPrev, TabControlScrollView.ScrollFirst, TabControlScrollView.ScrollLast and TabControlScrollView.ScrollToSelectedTabItem methods.

See Also