com.acesoft.aceoffix.wordwriter
Enum WdRowHeightRule

java.lang.Object
  extended by java.lang.Enum<WdRowHeightRule>
      extended by com.acesoft.aceoffix.wordwriter.WdRowHeightRule
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WdRowHeightRule>

public enum WdRowHeightRule
extends java.lang.Enum<WdRowHeightRule>

Specifies the rule for determining the height of the specified cells or rows.

Version:
5.0
Author:
Acesoft Corporation

Enum Constant Summary
wdRowHeightAtLeast
          The row height is at least a minimum specified value.
wdRowHeightAuto
          The row height is adjusted to accommodate the tallest value in the row.
wdRowHeightExactly
          The row height is an exact value.
 
Method Summary
static WdRowHeightRule valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WdRowHeightRule[] 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

wdRowHeightAuto

public static final WdRowHeightRule wdRowHeightAuto
The row height is adjusted to accommodate the tallest value in the row. This is the default value.


wdRowHeightAtLeast

public static final WdRowHeightRule wdRowHeightAtLeast
The row height is at least a minimum specified value.


wdRowHeightExactly

public static final WdRowHeightRule wdRowHeightExactly
The row height is an exact value.

Method Detail

values

public static WdRowHeightRule[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (WdRowHeightRule c : WdRowHeightRule.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static WdRowHeightRule valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null