New to Telerik Document ProcessingStart a free 30-day trial

Hyperlink Field

Updated on Feb 19, 2026

Hyperlink is a Field element containing a reference to another location by its name. The location can be a web page or a bookmark inside the document.

Field Syntax

This is how the syntax of a Hyperlink field looks like:

Syntax
{ HYPERLINK "Filename" [Switches ] }

Rad Words Processing Concepts Custom Code Field 01

"Filename"

The destination you want to navigate to.

Properties

The Hyperlink field exposes the following properties:

  • Uri: Specifies the URI of the hyperlink.
  • IsAnchor: Specifies whether the hyperlink points to a bookmark. The value is true if the hyperlink is pointing to a bookmark inside the document. Default value is false.
  • ToolTip: Specifies the hyperlink tooltip.

Switches

Switches are a way for the code fragment to specify formatting for the result of the field. More information is available in the Syntax and Switches section of the Fields article.

The possible switches for a Hyperlink field are:

SwitchSubtypeDescription
\oSpecifies the tooltip text for the hyperlink
\tSpecifies the target that the link should be redirected into
\t "_top"Whole page
\t "_self"Same frame
\t "_blank"New window
\t "_parent"Parent frame
\lSpecifies a location in the file, such as a bookmark, where this hyperlink will navigate to

Inserting

Inserting a Hyperlink field is easily achieved through the RadFlowDocumentEditor. It provides two options for this:

Hyperlinks can also point to a Bookmark inside the document. Example 3 shows how to create a document containing a bookmark and a hyperlink pointing to that bookmark.

c#
//Insert bookmark.
editor.InsertBookmark("DocumentStart");
editor.InsertLine("Hello word!");

//Insert hyperlink pointing to the bookmark.
editor.InsertHyperlink("Go to start", "DocumentStart", true, "Document start");

The result of the above snippet is illustrated in Figure 3.

Rad Words Processing Concepts Hyperlinks 03

See Also