Class HyperlinkClickEventArgs
This event arguments provides the necessary information about hyperlink click event.
Inherited Members
Namespace: Syncfusion.Blazor.PdfViewer
Assembly: Syncfusion.Blazor.dll
Syntax
public class HyperlinkClickEventArgs : BaseEventArgs<HyperlinkClickEventArgs>
Constructors
HyperlinkClickEventArgs()
Declaration
public HyperlinkClickEventArgs()
Properties
Cancel
Hyperlink navigation will not work if it is set to TRUE. The value is set to FALSE by default.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Hyperlink
Gets the current clicked hyperlink.
Declaration
public string Hyperlink { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
HyperlinkElement
Gets or set the URL to navigate.
Declaration
public DOM HyperlinkElement { get; set; }
Property Value
Type | Description |
---|---|
DOM | A DOM object representing the hyperlink element associated with the PDFViewer. |