Search
DiagramView.LinkTarget Property
See Also
 





Gets or sets the value of the TARGET attribute of AREA tags generated in ImageMap mode.

Namespace: MindFusion.Diagramming.WebForms
Package: MindFusion.Diagramming.WebForms

 Syntax

C#  Copy Code

public string LinkTarget { get; set; }

Visual Basic  Copy Code

Public Property LinkTarget As String

 Property Value

A string specifying the window or frame where the target of hyperlinks should be loaded. The default value is "_self".

 Remarks

This property could specify the name of the target window or frame, or one of the following special values:

_blank

Load the linked document into a new blank window.

_parent

Load the linked document into the immediate parent of the document the link is in.

_self

Load the linked document into the current window.

_top

Load the linked document into the topmost window.

 See Also