Interface IPagingInfo
Used to page long lists of data to the client.
Namespace: DotNetNuke.Abstractions.Prompt
Assembly: DotNetNuke.Abstractions.dll
Syntax
public interface IPagingInfo
Properties
| Improve this Doc View SourcePageNo
Gets or sets the current page nr.
Declaration
int PageNo { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
PageSize
Gets or sets the Page size.
Declaration
int PageSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalPages
Gets or sets the total nr of pages.
Declaration
int TotalPages { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalRecords
Gets or sets the total nr of records.
Declaration
int TotalRecords { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |