<ST_ChildAlignment> (Child Alignment)

This simple type defines how to align a node in its allocated space.

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

<b> (Bottom)

Specifies to align the node to the bottom.

<l> (Left)

Specifies to align the node to the left.

<r> (Right)

Specifies to align the node to the right.

<t> (Top)

Specifies to align the node to the top.

Referenced By

<ST_ParameterVal>5.9.7.49)

The following XML Schema fragment defines the contents of this simple type:

<simpleType name="ST_ChildAlignment" final="restriction">
	<restriction base="xsd:token">
	<enumeration value="t"/>
	<enumeration value="b"/>
	<enumeration value="l"/>
	<enumeration value="r"/>
	</restriction>
</simpleType>