New to Telerik UI for WinFormsStart a free 30-day trial

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; }
Property Value:

true if this instance is anchor; otherwise, false.

Gets or sets the URI to navigate to.

C#
[XamlSerializable("")]
public string NavigateUri { get; set; }
Property Value:

The URI.

Gets or sets the target of the hyperlink.

C#
[XamlSerializable(HyperlinkTargets.Blank)]
public HyperlinkTargets Target { get; set; }
Property Value:

The target.

Methods

C#
public void CopyPropertiesFrom(HyperlinkInfo hyperlinkInfo)
Parameters:hyperlinkInfoHyperlinkInfo

Creates a deep copy of this instance.

C#
public HyperlinkInfo CreateDeepCopy()
Returns:

HyperlinkInfo

The copied object.