Class PageSizeChangedArgs
Provides information about the PageSizeChanged event.
Inherited Members
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class PageSizeChangedArgs
Constructors
PageSizeChangedArgs()
Declaration
public PageSizeChangedArgs()
Properties
CurrentPage
Gets the page number of the current page displayed on the pager.
Declaration
public int CurrentPage { get; }
Property Value
| Type | Description |
|---|---|
| int | The page number of the current page. |
CurrentPageSize
Gets or sets the number of items displaying on the single page of the pager.
Declaration
public int CurrentPageSize { get; set; }
Property Value
| Type | Description |
|---|---|
| int | The number of items shown on a single page. |
TotalPages
Gets the total number of pages calculated using TotalItemsCount and PageSize.
Declaration
public int TotalPages { get; }
Property Value
| Type | Description |
|---|---|
| int | Total number of pages. |