Skip to main content

InfiniteAsyncSource.FetchRows Event

Allows you to fetch rows.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public event EventHandler<FetchRowsAsyncEventArgs> FetchRows

Event Data

The FetchRows event's data class is FetchRowsAsyncEventArgs. The following properties provide information specific to this event:

Property Description
AllowRetry Gets or sets whether to allow the GridControl to re-request data. Inherited from FetchRowsEventArgsBase.
CancellationToken Gets a token that allows you to respond to a task cancellation request invoked by the GridControl. Inherited from BaseAsyncArgs.
Filter Gets the GridControl‘s filter. Inherited from FetchEventArgsBase.
Result
Skip Gets the number of rows to skip in a returned result set. Inherited from FetchEventArgsBase.
SkipToken Gets the skip token. Inherited from FetchEventArgsBase.
SortOrder Gets the GridControl‘s sort options. Inherited from FetchEventArgsBase.
See Also