[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
This simple type specifies a number consisting of 10 hexadecimal digits which defines the Panose-1 classification number a font.
[Example: Consider the following information stored for a single font:
<w:font w:name="Times New Roman">
<w:panose1 w:val="02020603050405020304" />
…
</w:font>
The panose1 element specifies its Panose-1 number via its val attribute value of 02020603050405020304. end example]
This simple type's contents are a restriction of the XML Schema hexBinary datatype.
This simple type also specifies the following restrictions:
• This simple type's contents must have a length of exactly 10 characters.
Referenced By |
panose1@val (§2.8.2.13) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Panose">
<restriction base="xsd:hexBinary">
<length value="10"/>
</restriction>
</simpleType>