com.mindfusion.diagramming
Class ColumnStyle

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

public final class ColumnStyle
extends java.lang.Object

The members of this enumeration specify whether a table's column is automatically resized when the table is resized. These constants can be used as parameters of the Column.setColumnStyle(int) method of the Column class.


Field Summary
static int AutoWidth
          The column grows or shrinks automatically if the table is resized.
static int FixedWidth
          The column width stays fixed even if the table is resized.
 
Constructor Summary
ColumnStyle()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

FixedWidth

public static final int FixedWidth
The column width stays fixed even if the table is resized.

See Also:
Constant Field Values

AutoWidth

public static final int AutoWidth
The column grows or shrinks automatically if the table is resized. The available width is divided equally between all AutoWidth columns.

See Also:
Constant Field Values
Constructor Detail

ColumnStyle

public ColumnStyle()