Class PageClickEventArgs
This event arguments provides the necessary information about page click event.
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class PageClickEventArgs : BaseEventArgs<PageClickEventArgs>
Constructors
PageClickEventArgs()
Declaration
public PageClickEventArgs()
Properties
DocumentName
Gets the Document name to be loaded into PDF Viewer.
Declaration
public string DocumentName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
PageNumber
Page number of the document in which click action is performed.
Declaration
public int PageNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
PageX
Gets the x co-ordinate of the click action location.
Declaration
public double PageX { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
PageY
Gets y co-ordinate of the click action location.
Declaration
public double PageY { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |