IdxRichEditHyperlink.Target Property
Specifies the target browser window or frame to display an external hyperlink’s target.
Declaration
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