com.mindfusion.diagramming
Class CustomDraw

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

public class CustomDraw
extends java.lang.Object

The members of this enumeration specify what type of custom-drawing will be performed on an item. These constants can be used as parameters of the ShapeNode.setCustomDraw(int) method of the ShapeNode class.


Field Summary
static int Additional
          Perform custom drawing additional to the standard one.
static int Additional2
          Perform custom drawing additional to the standard one.
static int Full
          Do not execute any standard drawing code, but only custom one.
static int None
          Standard drawing.
static int ShadowOnly
          Custom draw only the item shadow.
 
Constructor Summary
CustomDraw()
           
 
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
Standard drawing.

See Also:
Constant Field Values

Additional

public static final int Additional
Perform custom drawing additional to the standard one.

See Also:
Constant Field Values

Full

public static final int Full
Do not execute any standard drawing code, but only custom one.

See Also:
Constant Field Values

ShadowOnly

public static final int ShadowOnly
Custom draw only the item shadow.

See Also:
Constant Field Values

Additional2

public static final int Additional2
Perform custom drawing additional to the standard one.

See Also:
Constant Field Values
Constructor Detail

CustomDraw

public CustomDraw()