Class HtmlLinkClickedEventArgs
Raised when the user clicks on a link in the html.
Inheritance
System.Object
System.EventArgs
HtmlLinkClickedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TheArtOfDev.HtmlRenderer.Core.Entities
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public sealed class HtmlLinkClickedEventArgs : EventArgs
Constructors
HtmlLinkClickedEventArgs(String, Dictionary<String, String>)
Init.
Declaration
public HtmlLinkClickedEventArgs(string link, Dictionary<string, string> attributes)
Parameters
System.String
link
the link href that was clicked |
System.Collections.Generic.Dictionary<System.String, System.String>
attributes
|
Properties
Attributes
collection of all the attributes that are defined on the link element
Declaration
public Dictionary<string, string> Attributes { get; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.String>
|
Handled
use to cancel the execution of the link
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
Link
the link href that was clicked
Declaration
public string Link { get; }
Property Value
System.String
|
Methods
ToString()
Declaration
public override string ToString()
Returns
System.String
|
Overrides
System.Object.ToString()