public enum ColumnStyle extends java.lang.Enum<ColumnStyle>
Column.setColumnStyle(com.mindfusion.diagramming.ColumnStyle)
method of the Column
class.Enum Constant and Description |
---|
AutoWidth
The column grows or shrinks automatically if the table is resized.
|
FixedWidth
The column width stays fixed even if the table is resized.
|
Modifier and Type | Method and Description |
---|---|
static ColumnStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnStyle FixedWidth
public static final ColumnStyle AutoWidth
public static ColumnStyle[] values()
for (ColumnStyle c : ColumnStyle.values()) System.out.println(c);
public static ColumnStyle 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