public enum STTextAnchoringType extends Enum<STTextAnchoringType>
Java class for ST_TextAnchoringType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_TextAnchoringType">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="t"/>
<enumeration value="ctr"/>
<enumeration value="b"/>
<enumeration value="just"/>
<enumeration value="dist"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
B
Text Anchor Enum ( Bottom )
|
CTR
Text Anchor Enum ( Center )
|
DIST
Text Anchor Enum ( Distributed )
|
JUST
Text Anchor Enum ( Justified )
|
T
Text Anchoring Type Enum ( Top )
|
| Modifier and Type | Method and Description |
|---|---|
static STTextAnchoringType |
fromValue(String v) |
String |
value() |
static STTextAnchoringType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STTextAnchoringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STTextAnchoringType T
public static final STTextAnchoringType CTR
public static final STTextAnchoringType B
public static final STTextAnchoringType JUST
public static final STTextAnchoringType DIST
public static STTextAnchoringType[] values()
for (STTextAnchoringType c : STTextAnchoringType.values()) System.out.println(c);
public static STTextAnchoringType 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 nullpublic String value()
public static STTextAnchoringType fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.