Class
HyperlinkInfo

Represents information about a hyperlink.

Definition

Namespace:Telerik.Windows.Documents.Model

Assembly:Telerik.Windows.Controls.RichTextBox.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

bool

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

string

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

HyperlinkTargets

The target.

Methods

CopyPropertiesFrom(HyperlinkInfo)

Copies properties from the specified HyperlinkInfo instance to the current instance.

Declaration

cs-api-definition
public void CopyPropertiesFrom(HyperlinkInfo hyperlinkInfo)

Parameters

hyperlinkInfo

HyperlinkInfo

The HyperlinkInfo instance from which to copy properties.

CreateDeepCopy()

Creates a deep copy of this instance.

Declaration

cs-api-definition
public HyperlinkInfo CreateDeepCopy()

Returns

HyperlinkInfo

The copied object.