com.mindfusion.diagramming
Class Orientation

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

public class Orientation
extends java.lang.Object

The members of this enumeration specify what orientation a graphic element should have - vertical, horizontal, or one determined automatically by JDiagram. These constants can be used as parameters of the RoutingOptions.setStartOrientation(int) and RoutingOptions.setEndOrientation(int) methods of RoutingOptions and the DiagramLink.setCascadeOrientation(int) method of the DiagramLink class.


Field Summary
static int Auto
          JDiagram should select a proper orientation.
static int Horizontal
          Specifies horizontal orientation.
static int Vertical
          Specifies vertical orientation.
 
Constructor Summary
Orientation()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Auto

public static final int Auto
JDiagram should select a proper orientation.

See Also:
Constant Field Values

Horizontal

public static final int Horizontal
Specifies horizontal orientation.

See Also:
Constant Field Values

Vertical

public static final int Vertical
Specifies vertical orientation.

See Also:
Constant Field Values
Constructor Detail

Orientation

public Orientation()