<ST_TextTabAlignType> (Text Tab Alignment Types)

This type specifies the text tab alignment types.

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

<ctr> (Text Tab Alignment Enum ( Center ))

The text at this tab stop is center aligned.

<dec> (Text Tab Alignment Enum ( Decimal ))

At this tab stop, the decimals are lined up. From a user's point of view, the text here behaves as right aligned until the decimal, and then as left aligned after the decimal.

<l> (Text Tab Alignment Enum ( Left))

The text at this tab stop is left aligned.

<r> (Text Tab Alignment Enum ( Right ))

The text at this tab stop is right aligned.

Referenced By

<tab@algn>5.1.5.2.12)

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

<simpleType name="ST_TextTabAlignType">
	<restriction base="xsd:token">
	<enumeration value="l"/>
	<enumeration value="ctr"/>
	<enumeration value="r"/>
	<enumeration value="dec"/>
	</restriction>
</simpleType>