com.mindfusion.diagramming
Class AttachToLink

java.lang.Object
  extended by com.mindfusion.diagramming.AttachToLink

public final class AttachToLink
extends java.lang.Object

The members of this enumeration specify how a node is attached to an arrow. These constants can be used as parameters of the DiagramNode.attachTo(com.mindfusion.diagramming.DiagramLink, int, int) method of the DiagramNode class.


Field Summary
static int LongestHSegment
          The node is attached to and follows the longest horizontal segment of the arrow.
static int Point
          The node is attached to and follows the specified control point of the arrow.
static int Segment
          The node is attached to and follows the specified segment of the arrow.
 
Constructor Summary
AttachToLink()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Point

public static final int Point
The node is attached to and follows the specified control point of the arrow.

See Also:
Constant Field Values

Segment

public static final int Segment
The node is attached to and follows the specified segment of the arrow.

See Also:
Constant Field Values

LongestHSegment

public static final int LongestHSegment
The node is attached to and follows the longest horizontal segment of the arrow.

See Also:
Constant Field Values
Constructor Detail

AttachToLink

public AttachToLink()