Share via


GridItemsProviderResult<TGridItem> Struct

Definition

Holds data being supplied to a QuickGrid<TGridItem>'s ItemsProvider.

public readonly struct GridItemsProviderResult<TGridItem>
type GridItemsProviderResult<'GridItem> = struct
Public Structure GridItemsProviderResult(Of TGridItem)

Type Parameters

TGridItem

The type of data represented by each row in the grid.

Inheritance
GridItemsProviderResult<TGridItem>

Properties

Items

The items being supplied.

TotalItemCount

The total number of items that may be displayed in the grid. This normally means the total number of items in the underlying data source after applying any filtering that is in effect.

If the grid is paginated, this should include all pages. If the grid is virtualized, this should include the entire scroll range.

Applies to