<ST_GrowDirection>
(Grow Direction)
This simple type defines different starting locations for nodes within the snake 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 the placement of nodes is to start in the bottom left corner. |
|
Specifies the placement of nodes is to start in the bottom right corner. |
|
Specifies the placement of nodes is to start in the top left corner. |
|
Specifies the placement of nodes is to stat in the top right corner. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_GrowDirection" final="restriction">
<restriction base="xsd:token">
<enumeration value="tL"/>
<enumeration value="tR"/>
<enumeration value="bL"/>
<enumeration value="bR"/>
</restriction>
</simpleType>