<ST_LinearDirection>
(Linear Direction)
This simple type defines the direction of growth of new nodes.
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 growth to start from the bottom. |
|
Specifies growth to start from the left. |
|
Specifies growth to start from the right. |
|
Specifies growth to start from the Top |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_LinearDirection" final="restriction">
<restriction base="xsd:token">
<enumeration value="fromL"/>
<enumeration value="fromR"/>
<enumeration value="fromT"/>
<enumeration value="fromB"/>
</restriction>
</simpleType>