Class MarkdownHyperlinkClickedEventArgs
Provides data for the HyperlinkClicked event.
Inheritance
System.Object
MarkdownHyperlinkClickedEventArgs
Namespace: Syncfusion.Maui.MarkdownViewer
Assembly: Syncfusion.Maui.MarkdownViewer.dll
Syntax
public class MarkdownHyperlinkClickedEventArgs : EventArgs
Constructors
MarkdownHyperlinkClickedEventArgs(String, Boolean)
Initializes a new instance of the MarkdownHyperlinkClickedEventArgs class.
Declaration
public MarkdownHyperlinkClickedEventArgs(string url, bool cancel)
Parameters
Type | Name | Description |
---|---|---|
System.String | url | The URL of the clicked hyperlink |
System.Boolean | cancel | Initial cancel state for the navigation |
Properties
Cancel
Gets or sets a value indicating whether the navigation should be canceled.
Declaration
public bool Cancel { get; set; }
Property Value
Type |
---|
System.Boolean |
Url
Gets the URL of the clicked link.
Declaration
public string Url { get; }
Property Value
Type |
---|
System.String |