public enum HorizontalAlignmentType extends Enum<HorizontalAlignmentType>
| Enum Constant and Description |
|---|
CONTHORIZ |
CTR |
LEFT |
NORMHORIZ |
RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static HorizontalAlignmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HorizontalAlignmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HorizontalAlignmentType NORMHORIZ
public static final HorizontalAlignmentType LEFT
public static final HorizontalAlignmentType CTR
public static final HorizontalAlignmentType RIGHT
public static final HorizontalAlignmentType CONTHORIZ
public static HorizontalAlignmentType[] values()
for (HorizontalAlignmentType c : HorizontalAlignmentType.values()) System.out.println(c);
public static HorizontalAlignmentType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.