public enum AttachToNode extends java.lang.Enum<AttachToNode>
DiagramNode.attachTo(com.mindfusion.diagramming.DiagramLink, com.mindfusion.diagramming.AttachToLink, int)
method of the DiagramNode
class.Enum Constant and Description |
---|
BottomCenter
The attached node follows the bottom-center point of the master node.
|
BottomLeft
The attached node follows the bottom-left point of the master node.
|
BottomRight
The attached node follows the bottom-right point of the master node.
|
MiddleLeft
The attached node follows the middle-left point of the master node.
|
MiddleRight
The attached node follows the middle-right point of the master node.
|
TopCenter
The attached node follows the top-center point of the master node.
|
TopLeft
The attached node follows the top-left point of the master node.
|
TopRight
The attached node follows the top-right point of the master node.
|
Modifier and Type | Method and Description |
---|---|
static AttachToNode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttachToNode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttachToNode TopLeft
public static final AttachToNode TopRight
public static final AttachToNode BottomLeft
public static final AttachToNode BottomRight
public static final AttachToNode TopCenter
public static final AttachToNode MiddleRight
public static final AttachToNode BottomCenter
public static final AttachToNode MiddleLeft
public static AttachToNode[] values()
for (AttachToNode c : AttachToNode.values()) System.out.println(c);
public static AttachToNode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null