Class PageChangedEventArgs
Provides date for the PageChanged event.
Inheritance
System.Object
PageChangedEventArgs
Namespace: Syncfusion.Windows.PdfViewer
Assembly: Syncfusion.SfPdfViewer.UWP.dll
Syntax
public class PageChangedEventArgs : EventArgs
Constructors
PageChangedEventArgs(Int32, Int32)
Creates a new instance of the PageChangedEventArgs class.
Declaration
public PageChangedEventArgs(int oldPN, int newPN)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | oldPN | The page number before the event |
System.Int32 | newPN | The page number after the event. |
Properties
NewPageNumber
The page number to which the document is navigated to.
Declaration
public int NewPageNumber { get; }
Property Value
Type |
---|
System.Int32 |
OldPageNumber
The page number from which page navigation was initiated.
Declaration
public int OldPageNumber { get; }
Property Value
Type |
---|
System.Int32 |