IPagedCollectionView
Definition
Namespace:Telerik.WinControls.Data
Assembly:Telerik.WinControls.dll
Syntax:
public interface IPagedCollectionView
Derived Classes:
Properties
Gets a value that indicates whether the IPagedCollectionView.PageIndex value is allowed to change.
bool CanChangePage { get; }
true if the IPagedCollectionView.PageIndex value is allowed to change; otherwise, false.
Gets a value indicating whether this data view can be paginated.
bool CanPage { get; }
true if this data view can be paginated; otherwise, false.
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 total number of items in the source collection.
int ItemCount { get; }
The total number of items in the source collection, or -1 if the total number is unknown.
Gets the zero-based index of the current page.
int PageIndex { get; }
The zero-based index of the current page.
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.
Events
Occurs when the IPagedCollectionView.PageIndex has changed.
event EventHandler<EventArgs> PageChanged
Occurs before the IPagedCollectionView.PageIndex is changed.
event EventHandler<PageChangingEventArgs> PageChanging