Skip to main content

DataPager.PagedSource Property

Gets the paged source collection. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.DataPager

Assembly: DevExpress.Xpf.Core.v14.2.dll

#Declaration

public IPagedCollectionView PagedSource { get; }

#Property Value

Type Description
DevExpress.Xpf.Editors.DataPager.IPagedCollectionView

The paged collection.

#Remarks

The Data Pager is designed to interact with data sources implementing System.ComponentModel.IPagedCollectionView. The data source is specified by the DataPager.Source property. If the data source does not implement System.ComponentModel.IPagedCollectionView, the Data Pager wraps it to a paged collection that can be accessed via the PagedSource property.

See Also