public enum MarkStyle extends java.lang.Enum<MarkStyle>
AnchorPoint.setMarkStyle(com.mindfusion.diagramming.MarkStyle)
method of the AnchorPoint
class.Enum Constant and Description |
---|
Circle
Draw a circle at the anchor point location.
|
Cross
Draw a cross at the anchor point location.
|
Custom
Custom-draw the anchor point.
|
None
No visual indication for the anchor point.
|
Rectangle
Draw a rectangle at the anchor point location.
|
X
Draw an X at the anchor point location.
|
Modifier and Type | Method and Description |
---|---|
static MarkStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MarkStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkStyle None
public static final MarkStyle Cross
public static final MarkStyle X
public static final MarkStyle Circle
public static final MarkStyle Rectangle
public static final MarkStyle Custom
public static MarkStyle[] values()
for (MarkStyle c : MarkStyle.values()) System.out.println(c);
public static MarkStyle 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