Class PagingInformation
Represents paging information.
Inheritance
System.Object
PagingInformation
Implements
System.IEquatable<PagingInformation>
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public class PagingInformation : object, IEquatable<PagingInformation>
Constructors
PagingInformation(Int32, Int32, Int32)
Represents paging information.
Declaration
public PagingInformation(int CurrentPage, int NumberOfPages, int TotalCount)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | CurrentPage | The current page number. |
System.Int32 | NumberOfPages | The total number of pages. |
System.Int32 | TotalCount | The total count of items. |
Properties
CurrentPage
Declaration
public int CurrentPage { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
NumberOfPages
Declaration
public int NumberOfPages { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalCount
Declaration
public int TotalCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Implements
System.IEquatable<>