ClassHyperlinkInfo
Represents information about a hyperlink.
Definition
Namespace:Telerik.Windows.Documents.Model
Assembly:Telerik.Windows.Controls.RichTextBox.dll
Syntax:
public class HyperlinkInfo
Inheritance: objectHyperlinkInfo
Constructors
HyperlinkInfo()
Initializes a new instance of the HyperlinkInfo class.
Declaration
public HyperlinkInfo()
Properties
IsAnchor
Gets or sets a value indicating whether this instance is anchor (points to a bookmark in the document).
Declaration
[XamlSerializable(false)]
public bool IsAnchor { get; set; }
Property Value
true if this instance is anchor; otherwise, false.
NavigateUri
Gets or sets the URI to navigate to.
Declaration
[XamlSerializable("")]
public string NavigateUri { get; set; }
Property Value
The URI.
Target
Gets or sets the target of the hyperlink.
Declaration
[XamlSerializable(HyperlinkTargets.Blank)]
public HyperlinkTargets Target { get; set; }
Property Value
The target.
Methods
CopyPropertiesFrom(HyperlinkInfo)
Copies properties from the specified HyperlinkInfo instance to the current instance.
Declaration
public void CopyPropertiesFrom(HyperlinkInfo hyperlinkInfo)
Parameters
hyperlinkInfo
The HyperlinkInfo instance from which to copy properties.
CreateDeepCopy()
Creates a deep copy of this instance.
Declaration
public HyperlinkInfo CreateDeepCopy()
Returns
The copied object.