<ST_TextDirection>
(Text Flow Direction)
This simple type specifies the direction of the text flow for the parent object.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Specifies that text in the parent object shall flow from bottom to top vertically, then from left to right horizontally on the page. This means that vertical lines are filled before the text expands horizontally. |
|
Specifies that text in the parent object shall flow from left to right horizontally, then top to bottom vertically on the page. This means that horizontal lines are filled before the text expands vertically. |
|
Specifies that text in the parent object shall flow from left to right horizontally, then top to bottom vertically on the page. This means that horizontal lines are filled before the text expands vertically. This flow is also rotated such that any East Asian text shall be rotated 270 degrees when displayed on a page. |
|
Specifies that text in the parent object shall flow from top to bottom vertically, then left to right horizontally on the page. This means that vertical lines are filled before the text expands horizontally. This flow is also rotated such that all text is rotated 90 degrees when displayed on a page. |
|
Specifies that text in the parent object shall flow from right to left horizontally, then top to bottom vertically on the page. This means that horizontal lines are filled before the text expands vertically. |
|
Specifies that text in the parent object shall flow from top to bottom vertically, then right to left horizontally on the page. This means that vertical lines are filled before the text expands horizontally. This flow is also rotated such that all text is rotated 90 degrees when displayed on a page. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TextDirection">
<restriction base="xsd:string">
<enumeration value="lrTb"/>
<enumeration value="tbRl"/>
<enumeration value="btLr"/>
<enumeration value="lrTbV"/>
<enumeration value="tbRlV"/>
<enumeration value="tbLrV"/>
</restriction>
</simpleType>