<ST_VerticalAlignRun> (Vertical Positioning Location)

This simple type specifies possible values for the alignment of the contents of this run in relation to the default appearance of the run's text. This allows the text to be repositioned as subscript or superscript without altering the font size of the run properties.

example:
<w:rPr>
  <w:vertAlign w:val="superscript" />
</w:rPr>

The resulting run is positioned as superscript, therefore it is rendered in a smaller size above the default baseline location for the contents of the run. ]

This simple type's contents are a restriction of the XML Schema string datatype.

The following are possible enumeration values for this type:

Enumeration Value

Description

<baseline> (Regular Vertical Positioning)

Specifies that the text in the parent run shall be located at the baseline and presented in the same size as surrounding text.

<subscript> (Subscript)

Specifies that this text should be subscript.

This setting shall lower the text in this run below the baseline and change it to a smaller size, if a smaller size is available.

<superscript> (Superscript)

Specifies that this text should be superscript.

This setting shall raise the text in this run above the baseline and change it to a smaller size, if a smaller size is available.

Referenced By

<vertAlign@val>2.3.2.40)

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

<simpleType name="ST_VerticalAlignRun">
	<restriction base="xsd:string">
	<enumeration value="baseline"/>
	<enumeration value="superscript"/>
	<enumeration value="subscript"/>
	</restriction>
</simpleType>