Table of Contents

Interface IPagingModel

Namespace
ToSic.Eav.DataSources
Assembly
ToSic.Eav.DataSources.dll

Model of paging information, as used by the Paging DataSource.

[WorkInProgressApi("v22")]
public interface IPagingModel : IModelFromEntity<PagingModel>, IModelFromEntity, IModelFromData

Properties

ItemCount

The total number of items in the source - not just the current page.

int ItemCount { get; }

Property Value

int

PageCount

The total number of pages - based on the page size and item count.

int PageCount { get; }

Property Value

int

PageNumber

The current page number - which page is currently shown.

[ContentTypeTitle]
int PageNumber { get; }

Property Value

int

PageSize

The page size - how many items are on a page.

int PageSize { get; }

Property Value

int