<ST_RectAlignment>
(Rectangle Alignments)
This simple type describes how to position two rectangles relative to each other.
This simple type's contents are a restriction of the XML Schema token datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Bottom |
|
Bottom Left |
|
Bottom Right |
|
Center |
|
Left |
|
Right |
|
Top |
|
Top Left |
|
Top Right |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_RectAlignment">
<restriction base="xsd:token">
<enumeration value="tl"/>
<enumeration value="t"/>
<enumeration value="tr"/>
<enumeration value="l"/>
<enumeration value="ctr"/>
<enumeration value="r"/>
<enumeration value="bl"/>
<enumeration value="b"/>
<enumeration value="br"/>
</restriction>
</simpleType>