public enum AutoResize extends java.lang.Enum<AutoResize>
Diagram.setAutoResize(com.mindfusion.diagramming.AutoResize)
method of the Diagram
class.Enum Constant and Description |
---|
AllDirections
Enlarge the document size to all directions.
|
None
Do not enlarge the document size automatically.
|
RightAndDown
Enlarge the document size only to the right and downwards.
|
Modifier and Type | Method and Description |
---|---|
static AutoResize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoResize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoResize None
public static final AutoResize RightAndDown
public static final AutoResize AllDirections
public static AutoResize[] values()
for (AutoResize c : AutoResize.values()) System.out.println(c);
public static AutoResize 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