DataViewBase.IsDeferredScrolling Property
In This Article
Gets or sets whether deferred scrolling is enabled. This is a dependency property.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll
#Declaration
[CloneDetailMode(CloneDetailMode.Skip)]
[XtraSerializableProperty]
public bool IsDeferredScrolling { get; set; }
#Property Value
Type | Description |
---|---|
Boolean | true to enable deferred scrolling; otherwise, false. |
#Remarks
Since displaying a large number of records causes performance issues, deferred scrolling is enabled by default. In this instance, a View's content is stationary when the user drags the thumb of a scroll bar. To disable deferred scrolling, set the IsDeferredScrolling property to false.
To learn more, see Data Scrolling Overview.
See Also