Class PageChangingEventArgs
Provides information about the PageChanging event.
Namespace: Syncfusion.Blazor.Navigations
Assembly: Syncfusion.Blazor.dll
Syntax
public class PageChangingEventArgs : Object
Remarks
You can cancel the page changing action by setting a property in the event handler.
Constructors
PageChangingEventArgs()
Declaration
public PageChangingEventArgs()
Properties
Cancel
Gets or sets a value that indicates whether to cancel the page changing action of the pager.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
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. |
PreviousPage
Gets the page number of the previous page displayed on the pager.
Declaration
public int PreviousPage { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The page number of the previous page. |