public enum CellFrameStyle extends java.lang.Enum<CellFrameStyle>
TableNode.setCellFrameStyle(com.mindfusion.diagramming.CellFrameStyle)
method of the TableNode
class.Enum Constant and Description |
---|
None
TableNode cells have no border.
|
Simple
The borders of table cells are simple lines.
|
System3D
The borders have 3D look.
|
Modifier and Type | Method and Description |
---|---|
static CellFrameStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CellFrameStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CellFrameStyle None
public static final CellFrameStyle Simple
public static final CellFrameStyle System3D
public static CellFrameStyle[] values()
for (CellFrameStyle c : CellFrameStyle.values()) System.out.println(c);
public static CellFrameStyle 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