com.stimulsoft.report.export
Enum EmfTextAlignmentMode

java.lang.Object
  extended by java.lang.Enum<EmfTextAlignmentMode>
      extended by com.stimulsoft.report.export.EmfTextAlignmentMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EmfTextAlignmentMode>

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

Copyright Stimulsoft


Enum Constant Summary
TA_BASELINE
           
TA_BOTTOM
           
TA_CENTER
           
TA_LEFT
           
TA_MASK
           
TA_NOUPDATECP
           
TA_RIGHT
           
TA_RTLREADING
           
TA_TOP
           
TA_UPDATECP
           
 
Method Summary
 int getValue()
           
static EmfTextAlignmentMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EmfTextAlignmentMode[] 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

TA_LEFT

public static final EmfTextAlignmentMode TA_LEFT

TA_RIGHT

public static final EmfTextAlignmentMode TA_RIGHT

TA_CENTER

public static final EmfTextAlignmentMode TA_CENTER

TA_TOP

public static final EmfTextAlignmentMode TA_TOP

TA_BOTTOM

public static final EmfTextAlignmentMode TA_BOTTOM

TA_BASELINE

public static final EmfTextAlignmentMode TA_BASELINE

TA_NOUPDATECP

public static final EmfTextAlignmentMode TA_NOUPDATECP

TA_UPDATECP

public static final EmfTextAlignmentMode TA_UPDATECP

TA_RTLREADING

public static final EmfTextAlignmentMode TA_RTLREADING

TA_MASK

public static final EmfTextAlignmentMode TA_MASK
Method Detail

values

public static EmfTextAlignmentMode[] 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 (EmfTextAlignmentMode c : EmfTextAlignmentMode.values())
    System.out.println(c);

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

valueOf

public static EmfTextAlignmentMode 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

getValue

public int getValue()