ClassHyperlinkInfo
Class
Represents information about a hyperlink.
Definition
Namespace:Telerik.WinForms.Documents.Model
Assembly:Telerik.WinControls.RichTextEditor.dll
Syntax:
cs-api-definition
public class HyperlinkInfo
Inheritance: objectHyperlinkInfo
Constructors
HyperlinkInfo()
Initializes a new instance of the HyperlinkInfo class.
Declaration
cs-api-definition
public HyperlinkInfo()
Properties
IsAnchor
Gets or sets a value indicating whether this instance is anchor (points to a bookmark in the document).
Declaration
cs-api-definition
[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
cs-api-definition
[XamlSerializable("")]
public string NavigateUri { get; set; }
Property Value
The URI.
Target
Gets or sets the target of the hyperlink.
Declaration
cs-api-definition
[XamlSerializable(HyperlinkTargets.Blank)]
public HyperlinkTargets Target { get; set; }
Property Value
The target.
Methods
CopyPropertiesFrom(HyperlinkInfo)
Declaration
cs-api-definition
public void CopyPropertiesFrom(HyperlinkInfo hyperlinkInfo)
Parameters
hyperlinkInfo
CreateDeepCopy()
Creates a deep copy of this instance.
Declaration
cs-api-definition
public HyperlinkInfo CreateDeepCopy()
Returns
The copied object.