Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Hyperlink.Target Property

Gets or sets the target window or frame in which to display the web page content when the hyperlink is clicked.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v24.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

#Declaration

string Target { get; set; }

#Property Value

Type Description
String

A string that represents a predefined name of the target window (frame). By default it is an empty string.

#Remarks

Use the Target property to specify the frame or window that displays the web page when the hyperlink is clicked. The web page is specified via the Hyperlink.NavigateUri property.

The following table lists used target names:

Target Value Meaning
_blank Renders the content in a new window without frames.
_parent Renders the content in the frameset parent.
_self Renders the content in the focused frame.
_top Renders the content in the full window without frames.

An empty string means that the target is determined by browser options.

See Also