Search
HtmlBuilder.LinkTarget Property
See Also
 





Gets or sets the value of the TARGET attribute of AREA tags.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public string LinkTarget { get; set; }

Visual Basic  Copy Code

Public Property LinkTarget As String

 Property Value

A string containing the target frame name. The default is "_self".

 Remarks

This property provides a value for the TARGET attribute of each <AREA> tag included in the image map. TARGET 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:

Value

Description

_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 browser window.

 See Also