Search
AttachToLink Enumeration
See Also
 






Specifies the possible ways to attach a node to a link.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public enum AttachToLink

Visual Basic  Copy Code

Public Enum AttachToLink

 Members

  Member name Description

Center

The node is attached to the center of the link's bounding rectangle.

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 argument of the AttachToLink methods of the DiagramNode class.

 See Also