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

MonthView.IsDeferredVerticalScrollingEnabled Property

Gets or sets a value indicating whether the content being scrolled is stationary when a user drags the vertical scroll bar’s thumb. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

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

Declaration

public bool IsDeferredVerticalScrollingEnabled { get; set; }

Property Value

Type Description
Boolean

true, to enable deferred scrolling for the vertical scroll bar; otherwise, false. The default is true.

Remarks

Displaying a large amount of data in the Month View may cause performance issues. To help you navigate the view more efficiently, the SchedulerControl introduces the IsDeferredVerticalScrollingEnabled and MonthView.IsVerticalScrollSnappingEnabled options, which are enabled by default. The IsDeferredVerticalScrollingEnabled option assumes that the scheduler’s content is not updated until a user releases the scroll bar’s thumb. A tooltip indicates the position to which the content will be scrolled afterwards.

The MonthView.IsVerticalScrollSnappingEnabled property enables the snapping feature for vertical scrolling, so the scheduler snaps to the top of time cells when a user scrolls the view.

To turn on live scrolling for the Month view, set the IsDeferredVerticalScrollingEnabled and MonthView.IsVerticalScrollSnappingEnabled properties to false.

See Also