Skip to main content

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.v23.2.Core.dll

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

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