Skip to main content
A newer version of this page is available. .

HyperlinkInfo Class

Contains information about a hyperlink.

Declaration

export class HyperlinkInfo

Remarks

richEdit.selection.goToSubDocumentEnd();
richEdit.document.insertParagraph(richEdit.selection.active);
richEdit.document.hyperlinks.create(richEdit.selection.active+1, {text: "Visit our site", tooltip: "DevExpress site", url: "https://www.devexpress.com/"})

Properties

bookmark Property

The name of a bookmark to which the hyperlink navigate.

Declaration

bookmark: string

Property Value

Type Description
string

A bookmark name.

Remarks

If the bookmark property is specified, the url property is not in effect.

text Property

Specifies the hyperlink text.

Declaration

text: string

Property Value

Type Description
string

The hyperlink text.

tooltip Property

Specifies the hyperlink tooltip text.

Declaration

tooltip: string

Property Value

Type Description
string

The tooltip text.

url Property

Specifies the hyperlink URL.

Declaration

url: string

Property Value

Type Description
string

The hyperlink URL.

Remarks

If the bookmark property is specified, the url property is not in effect.