Class PageChangedEventArgs
Provides data for PageChanged event.
Inheritance
Namespace: Syncfusion.SfPdfViewer.iOS
Assembly: Syncfusion.SfPdfViewer.iOS.dll
Syntax
public class PageChangedEventArgs : EventArgs
Properties
IsFirstPage
Gets a value indicating whether the new updated page number is the first page of the SfPdfViewer, otherwise false.
Declaration
public bool IsFirstPage { get; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean which represents whether the current page is the first page of the document or not. |
IsLastPage
Gets a value indicating whether the new page number is the last page of the SfPdfViewer, otherwise false.
Declaration
public bool IsLastPage { get; }
Property Value
Type | Description |
---|---|
System.Boolean | A boolean which represents whether the current page is the last page of the document or not. |
NewPageNumber
Gets the page number to which the document is navigated to in SfPdfViewer.
Declaration
public int NewPageNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer that holds the destination page number/current page number. |
OldPageNumber
Gets the page number from which the navigation was initiated in SfPdfViewer.
Declaration
public int OldPageNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer that holds value of the page number from which navigation is initiated. |
PageNumber
Gets the number of the current page being displayed in SfPdfViewer.
Declaration
public int PageNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer which gets the current page number of the PDF document. |