public enum CustomDraw extends java.lang.Enum<CustomDraw>
ShapeNode.setCustomDraw(com.mindfusion.diagramming.CustomDraw)
method of the ShapeNode
class.Enum Constant and Description |
---|
Additional
Perform custom drawing additional to the standard one.
|
Additional2
Perform custom drawing additional to the standard one.
|
Full
Do not execute any standard drawing code, but only custom one.
|
None
Standard drawing.
|
ShadowOnly
Custom draw only the item shadow.
|
Modifier and Type | Method and Description |
---|---|
static CustomDraw |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomDraw[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomDraw None
public static final CustomDraw Additional
public static final CustomDraw Full
public static final CustomDraw ShadowOnly
public static final CustomDraw Additional2
public static CustomDraw[] values()
for (CustomDraw c : CustomDraw.values()) System.out.println(c);
public static CustomDraw 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