public enum SelectionStyle extends java.lang.Enum<SelectionStyle>
Selection.setHandlesStyle(com.mindfusion.diagramming.SelectionStyle)
method of the Selection
class.Enum Constant and Description |
---|
Rectangle
Draw a rectangular selection frame that bounds all selected items.
|
SelectionHandles
All items in the multiple selection are drawn with selection handles
around them.
|
SemiTransparent
Draw a semi-transparent rectangle that bounds all selected items.
|
Modifier and Type | Method and Description |
---|---|
static SelectionStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SelectionStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectionStyle SelectionHandles
public static final SelectionStyle Rectangle
public static final SelectionStyle SemiTransparent
public static SelectionStyle[] values()
for (SelectionStyle c : SelectionStyle.values()) System.out.println(c);
public static SelectionStyle 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