<ST_Pitch> (Font Pitch Value)

This simple type specifies the possible values for the font pitch of a font.

example:
<w:font w:name="Courier New">
  <w:pitch w:val="fixed" /></w:font>

The <pitch> element specifies via its @val attribute value of fixed that this is a fixed width font. ]

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

<default> (Default)

Specifies that no information is available about the pitch of a font.

<fixed> (Fixed Width)

Specifies that this is a fixed width font.

<variable> (Proportional Width)

Specifies that this is a proportional width font.

Referenced By

<pitch@val>2.8.2.14)

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

<simpleType name="ST_Pitch">
	<restriction base="xsd:string">
	<enumeration value="fixed"/>
	<enumeration value="variable"/>
	<enumeration value="default"/>
	</restriction>
</simpleType>