Class HyperlinkClickedEventArgs
Provides data for events handling users clicking on hyperlinks.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.Hyperlinks
Assembly: Telerik.WinControls.dll
Syntax
public class HyperlinkClickedEventArgs : EventArgs
Constructors
HyperlinkClickedEventArgs(String, Boolean)
Initializes a new instance of the HyperlinkClickedEventArgs class.
Declaration
public HyperlinkClickedEventArgs(string url, bool isTrustedUrl)
Parameters
System.String
url
The URL of the hyperlink. |
System.Boolean
isTrustedUrl
Is the URL considered trusted. |
Properties
Handled
Get or set a value indicating whether the event is handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
IsTrustedUrl
Gets a value tha indicates if the URL passes our validation. If the URL is not trusted, the hyperlink will not be opened. Set this property to true to open the hyperlink.
Declaration
public bool IsTrustedUrl { get; set; }
Property Value
System.Boolean
|
URL
The URL of the hyperlink.
Declaration
public string URL { get; }
Property Value
System.String
|