Search
HtmlBuilder.LinkTarget Property
See Also
 



Gets or sets the value of the TARGET attribute of each <AREA> tag included in the image map.

 Syntax

VB6  Copy Code

Public Property Get LinkTarget() As String
Public Property Let LinkTarget( _
    ByVal value As String _
)

C++  Copy Code

public:
BSTR get_LinkTarget ()
void put_LinkTarget (
    BSTR value
)

 Property Value

A string value. The default is "_self".

 Remarks

This property indicates the target window or frame where image area hyperlinks are opened. The target could be either a named frame or one of the following special values:

_blank

Loads the linked document into a new blank window.

_parent

Loads the linked document into current document's parent.

_self

Loads the linked document into the same window.

_top

Loads the linked document into the topmost window.

 See Also