Class HyperlinkClickedEventArgs
Provides data for the HyperlinkClicked event.
Inheritance
Namespace: Telerik.Windows.Documents.Model
Assembly: Telerik.Windows.Controls.RichTextBox.dll
Syntax
public class HyperlinkClickedEventArgs : EventArgs
Constructors
HyperlinkClickedEventArgs(String, HyperlinkTargets, Boolean)
Initializes a new instance of the HyperlinkClickedEventArgs class.
Declaration
public HyperlinkClickedEventArgs(string url, HyperlinkTargets hyperlinkTarget, bool isTrustedUrl)
Parameters
System.String
url
|
HyperlinkTargets
hyperlinkTarget
|
System.Boolean
isTrustedUrl
|
Properties
Handled
Gets or sets a value indicating whether the event is handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
HyperlinkTarget
Represents the target of the hyperlink that was clicked.
Declaration
public HyperlinkTargets HyperlinkTarget { get; }
Property Value
HyperlinkTargets
|
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
Gets the URL of the hyperlink.
Declaration
public string URL { get; }
Property Value
System.String
|