com.mindfusion.diagramming
Class SelectionStyle

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

public class SelectionStyle
extends java.lang.Object

The members of this enumeration specify what a multiple selection of items should look like. These constants can be used as parameters of the Selection.setStyle(int) method of the Selection class.


Field Summary
static int Rectangle
          Draw a rectangular selection frame that bounds all selected items.
static int SelectionHandles
          All items in the multiple selection are drawn with selection handles around them.
static int SemiTransparent
          Draw a semi-transparent rectangle that bounds all selected items.
 
Constructor Summary
SelectionStyle()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

SelectionHandles

public static final int SelectionHandles
All items in the multiple selection are drawn with selection handles around them.

See Also:
Constant Field Values

Rectangle

public static final int Rectangle
Draw a rectangular selection frame that bounds all selected items.

See Also:
Constant Field Values

SemiTransparent

public static final int SemiTransparent
Draw a semi-transparent rectangle that bounds all selected items.

See Also:
Constant Field Values
Constructor Detail

SelectionStyle

public SelectionStyle()