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.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
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