[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
This simple type specifies the possible values for the font pitch of a font.
[Example: Consider the following information stored for a single font:
<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. end example]
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>