<ST_SecondaryLinearDirection>
(Secondary Linear Direction)
This simple type defines different directions for the nodes in a both hanging layout in the hierarchy algorithm.
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 |
---|---|
|
Specifies that the nodes begin from the bottom and move upward. |
|
Specifies that the nodes begin from the left and move right. |
|
Specifies that the nodes begin from the right and move left. |
|
Specifies that the nodes begin from the top and move downward. |
|
Specifies no direction. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_SecondaryLinearDirection" final="restriction">
<restriction base="xsd:token">
<enumeration value="none"/>
<enumeration value="fromL"/>
<enumeration value="fromR"/>
<enumeration value="fromT"/>
<enumeration value="fromB"/>
</restriction>
</simpleType>