PdfLinkClickedEventArgs Class
Definition
Event arguments for link clicked event.
public class PdfLinkClickedEventArgs
Constructors
| Name | Description |
|---|---|
| PdfLinkClickedEventArgs | Initializes a new instance of the Avalonia.Controls.PdfLinkClickedEventArgs class. |
PdfLinkClickedEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.PdfLinkClickedEventArgs class.
public PdfLinkClickedEventArgs(Avalonia.Controls.Pdf.Core.PdfLinkDestination destination)
Parameters
destination Avalonia.Controls.Pdf.Core.PdfLinkDestination
The destination the clicked link points to.
Properties
| Name | Description |
|---|---|
| Destination | Gets the destination the clicked link points to (a page target or a URI). |
| Handled | Gets or sets a value indicating whether the click has been handled. Set to to suppress the viewer's default navigation behavior. |
Destination Property
Gets the destination the clicked link points to (a page target or a URI).
public Avalonia.Controls.Pdf.Core.PdfLinkDestination Destination { get; set; }
Handled Property
Gets or sets a value indicating whether the click has been handled. Set to to suppress the viewer's default navigation behavior.
public bool Handled { get; set; }