public enum ModificationStart extends java.lang.Enum<ModificationStart>
DiagramView.setModificationStart(com.mindfusion.diagramming.ModificationStart)
method of the Diagram
class.Enum Constant and Description |
---|
AutoHandles
Modification handles appear automatically around the item that is
under the mouse pointer.
|
SelectedOnly
Users must first select an item in order to modify it.
|
Modifier and Type | Method and Description |
---|---|
static ModificationStart |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModificationStart[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationStart SelectedOnly
public static final ModificationStart AutoHandles
public static ModificationStart[] values()
for (ModificationStart c : ModificationStart.values()) System.out.println(c);
public static ModificationStart 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