IPagedCollectionView
Provides paging functionality for a collection view.
Definition
Namespace:Telerik.Windows.Data
Assembly:Telerik.Windows.Data.dll
Syntax:
public interface IPagedCollectionView
Derived Classes:
Properties
Gets a value that indicates whether a page index change is in process.
bool IsPageChanging { get; }
true if the page index is changing; otherwise, false.
Gets the minimum number of items known to be in the source collection.
int ItemCount { get; }
The minimum number of items known to be in the source collection.
Gets the zero-based index of the current page.
int PageIndex { get; }
The zero-based index of the current page.
Gets or sets the number of items to display on a page.
int PageSize { get; set; }
The number of items to display on a page.
Gets the total number of items in the source collection.
int TotalItemCount { get; }
The total number of items in the source collection, or -1 if the total number is unknown.
Methods
Sets the first page as the current page.
Sets the last page as the current page.
Moves to the page after the current page.
Moves to the page before the current page.