Class PageClickEventArgs
This event arguments provides the necessary information about page click event.
Inherited Members
Namespace: Syncfusion.Blazor.SfPdfViewer
Assembly: Syncfusion.Blazor.SfPdfViewer.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
[JsonPropertyName("documentName")]
public string DocumentName { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Accepts the string value. |
PageNumber
Page number of the document in which click action is performed.
Declaration
[JsonPropertyName("pageNumber")]
[JsonInclude]
public int PageNumber { get; }
Property Value
| Type | Description |
|---|---|
| int | Accepts an integer value. |
PageX
Gets the x co-ordinate of the click action location.
Declaration
[JsonPropertyName("x")]
[JsonInclude]
public double PageX { get; }
Property Value
| Type | Description |
|---|---|
| double | Accepts the double value. |
PageY
Gets y co-ordinate of the click action location.
Declaration
[JsonPropertyName("y")]
[JsonInclude]
public double PageY { get; }
Property Value
| Type | Description |
|---|---|
| double | Accepts the double value. |