|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<WdRulerStyle>
com.acesoft.aceoffix.wordwriter.WdRulerStyle
public enum WdRulerStyle
Specifies the way Word adjusts the table when the left indent is changed.
Enum Constant Summary | |
---|---|
wdAdjustFirstColumn
Adjusts the left edge of the first column only, preserving the positions of the other columns and the right edge of the table. |
|
wdAdjustNone
Adjusts the left edge of row or rows, preserving the width of all columns by shifting them to the left or right. |
|
wdAdjustProportional
Adjusts the left edge of the first column, preserving the position of the right edge of the table by proportionally adjusting the widths of all the cells in the specified row or rows. |
|
wdAdjustSameWidth
Adjusts the left edge of the first column, preserving the position of the right edge of the table by setting the widths of all the cells in the specified row or rows to the same value. |
Method Summary | |
---|---|
static WdRulerStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static WdRulerStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final WdRulerStyle wdAdjustNone
public static final WdRulerStyle wdAdjustProportional
public static final WdRulerStyle wdAdjustFirstColumn
public static final WdRulerStyle wdAdjustSameWidth
Method Detail |
---|
public static WdRulerStyle[] values()
for (WdRulerStyle c : WdRulerStyle.values()) System.out.println(c);
public static WdRulerStyle 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |