com.mindfusion.diagramming
Class MarkStyle

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

public final class MarkStyle
extends java.lang.Object

The members of this enumeration specify what marks should be drawn where the anchor points of a node are located. These constants can be used as parameters of the constructors and the AnchorPoint.setMarkStyle(int) method of the AnchorPoint class.


Field Summary
static int Circle
          Draw a circle at the anchor point location.
static int Cross
          Draw a cross at the anchor point location.
static int Custom
          Custom-draw the anchor point.
static int None
          No visual indication for the anchor point.
static int Rectangle
          Draw a rectangle at the anchor point location.
static int X
          Draw an X at the anchor point location.
 
Constructor Summary
MarkStyle()
           
 
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
No visual indication for the anchor point.

See Also:
Constant Field Values

Cross

public static final int Cross
Draw a cross at the anchor point location.

See Also:
Constant Field Values

X

public static final int X
Draw an X at the anchor point location.

See Also:
Constant Field Values

Circle

public static final int Circle
Draw a circle at the anchor point location.

See Also:
Constant Field Values

Rectangle

public static final int Rectangle
Draw a rectangle at the anchor point location.

See Also:
Constant Field Values

Custom

public static final int Custom
Custom-draw the anchor point.

See Also:
Constant Field Values
Constructor Detail

MarkStyle

public MarkStyle()