HyperlinkInfo
Class
Represents information about a hyperlink.
Definition
Namespace:Telerik.WinForms.Documents.Model
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
C#
public class HyperlinkInfo
Inheritance: objectHyperlinkInfo
Constructors
Initializes a new instance of the HyperlinkInfo class.
C#
public HyperlinkInfo()
Properties
Gets or sets a value indicating whether this instance is anchor (points to a bookmark in the document).
C#
[XamlSerializable(false)]
public bool IsAnchor { get; set; }
true if this instance is anchor; otherwise, false.
Gets or sets the URI to navigate to.
C#
[XamlSerializable("")]
public string NavigateUri { get; set; }
The URI.
Gets or sets the target of the hyperlink.
C#
[XamlSerializable(HyperlinkTargets.Blank)]
public HyperlinkTargets Target { get; set; }
The target.
Methods
C#
public void CopyPropertiesFrom(HyperlinkInfo hyperlinkInfo)
Creates a deep copy of this instance.