Class PageSizeChangedArgs
Provides information about the PageSizeChanged event.
Inheritance
System.Object
PageSizeChangedArgs
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class PageSizeChangedArgs : Object
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 |
---|---|
System.Int32 | 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 |
---|---|
System.Int32 | 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 |
---|---|
System.Int32 | Total number of pages. |