<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 |
---|---|
|
Specifies that no information is available about the pitch of a font. |
|
Specifies that this is a fixed width font. |
|
Specifies that this is a proportional width font. |
Referenced By |
---|
|
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>