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

IdxRichEditHyperlink.Target Property

Specifies the target browser window or frame to display an external hyperlink’s target.

#Declaration

Delphi
property Target: string read; write;

#Property Value

Type
string

#Remarks

Use this property to specify the browser frame or window that displays the target web page in response to a click on the hyperlink. Assign one of the following values to the Target property:

Value Description
‘_blank’ Displays the target URI content in a new window without frames.
‘_parent’ Displays the target URI content in the frameset parent.
‘_self’ Displays the target URI content in the focused frame.
‘_top’ Displays the target URI content in a maximized window without frames.
‘’ Displays the target URI content according to the browser settings.

The Target property’s default value is an empty string.

See Also