Class PageChangeEventArgs
This event arguments provides the necessary information about page change event.
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class PageChangeEventArgs : BaseEventArgs<PageChangeEventArgs>
Constructors
PageChangeEventArgs()
Declaration
public PageChangeEventArgs()
Properties
CurrentPageNumber
Gets the current page number of the document.
Declaration
public int CurrentPageNumber { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
DocumentName
Gets the Document name to be loaded into PdfViewer.
Declaration
public string DocumentName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
PreviousPageNumber
Gets the previous page number of the document.
Declaration
public int PreviousPageNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |