Search
AttachToLink Enumeration
See Also
 





Defines values specifying the possible ways to attach a node to a link.

Namespace: MindFusion.Diagramming
Package: MindFusion.Diagramming

 Syntax

C#  Copy Code

public enum AttachToLink

Visual Basic  Copy Code

Public Enum AttachToLink

 Members

  Member name Description

FixedDistance

Preserves the absolute distance from a node to link's start or end point.

LongestHSegment

The node stays attached to the longest horizontal segment of the link.

Point

The node is attached to a fixed control point of the link.

RelativeDistance

Preserves the relative distance from a node to link's start point.

Segment

The node is attached to a fixed segment of the link.

 Remarks

Members of this enumeration are used as values for the attType argument of the AttachTo method of the DiagramNode class.

 See Also