com.mindfusion.diagramming
Class AdjustmentHandles

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

public final class AdjustmentHandles
extends java.lang.Object

The members of this enumeration specify which selection handles of a node should be enabled or disabled. A bitwise combination of these constants can be used as parameter of the DiagramNode.setEnabledHandles(long) method of the DiagramNode class.


Field Summary
static int All
          All handles are enabled.
static int Move
          The movement handle is enabled.
static int None
          Specifies that all selection handles of an item are disabled.
static int ResizeBottomCenter
          The bottom-center selection handle is enabled.
static int ResizeBottomLeft
          The bottom-left selection handle is enabled.
static int ResizeBottomRight
          The bottom-right selection handle is enabled.
static int ResizeMiddleLeft
          The middle-left selection handle is enabled.
static int ResizeMiddleRight
          The middle-right selection handle is enabled.
static int ResizeTopCenter
          The top-center selection handle is enabled.
static int ResizeTopLeft
          The top-left selection handle is enabled.
static int ResizeTopRight
          The top-right selection handle is enabled.
static int Rotate
          The rotation handle is enabled.
 
Constructor Summary
AdjustmentHandles()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

None

public static final int None
Specifies that all selection handles of an item are disabled.

See Also:
Constant Field Values

ResizeTopLeft

public static final int ResizeTopLeft
The top-left selection handle is enabled.

See Also:
Constant Field Values

ResizeTopRight

public static final int ResizeTopRight
The top-right selection handle is enabled.

See Also:
Constant Field Values

ResizeBottomRight

public static final int ResizeBottomRight
The bottom-right selection handle is enabled.

See Also:
Constant Field Values

ResizeBottomLeft

public static final int ResizeBottomLeft
The bottom-left selection handle is enabled.

See Also:
Constant Field Values

ResizeTopCenter

public static final int ResizeTopCenter
The top-center selection handle is enabled.

See Also:
Constant Field Values

ResizeMiddleRight

public static final int ResizeMiddleRight
The middle-right selection handle is enabled.

See Also:
Constant Field Values

ResizeBottomCenter

public static final int ResizeBottomCenter
The bottom-center selection handle is enabled.

See Also:
Constant Field Values

ResizeMiddleLeft

public static final int ResizeMiddleLeft
The middle-left selection handle is enabled.

See Also:
Constant Field Values

Move

public static final int Move
The movement handle is enabled.

See Also:
Constant Field Values

Rotate

public static final int Rotate
The rotation handle is enabled.

See Also:
Constant Field Values

All

public static final int All
All handles are enabled.

See Also:
Constant Field Values
Constructor Detail

AdjustmentHandles

public AdjustmentHandles()