com.mindfusion.diagramming
Class AutoResize

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

public class AutoResize
extends java.lang.Object

The members of this enumeration specify whether the size of the document area should be automatically enlarged if needed, and to what direction it should be enlarged. These constants can be used as parameters of the Diagram.setAutoResize(int) method of the Diagram class.


Field Summary
static int AllDirections
          Enlarge the document size to all directions.
static int None
          Do not enlarge the document size automatically.
static int RightAndDown
          Enlarge the document size only to the right and downwards.
 
Constructor Summary
AutoResize()
           
 
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
Do not enlarge the document size automatically.

See Also:
Constant Field Values

RightAndDown

public static final int RightAndDown
Enlarge the document size only to the right and downwards.

See Also:
Constant Field Values

AllDirections

public static final int AllDirections
Enlarge the document size to all directions.

See Also:
Constant Field Values
Constructor Detail

AutoResize

public AutoResize()