Skip to main content

DataControlBase.IncrementalLoadingThreshold Property

Gets or sets the threshold range that governs when the grid will begin to prefetch more row items. This is a dependency property.

Namespace: DevExpress.UI.Xaml.Grid

Assembly: DevExpress.UI.Xaml.Grid.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public double IncrementalLoadingThreshold { get; set; }

Property Value

Type Description
Double

The loading threshold. By default, 0.

Remarks

Set the IncrementalLoadingThreshold property to a larger number (for instance 10 or more) if you expect the end-user to scroll through the grid very quickly, and it is worthwhile devoting resources to loading more items as quickly as possible.

Tip

The grid’s items source must implement the Windows.UI.Xaml.Data.ISupportIncrementalLoading interface. To learn more, see the corresponding article in MSDN.

See Also