<ST_FontFamily>
(Font Family Value)
This simple type specifies possible values for the font family of a font.
<w:font w:name="Calibri"> <w:family w:val="swiss" /> … </w:font>
The <family>
element specifies via its @val
attribute value of swiss
that this font is part of the Swiss family. ]
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 information about a font's font family does not exist. |
|
Specifies the Novelty font family. |
|
Specifies a monospace font with or without serifs (monospace fonts are usually modern). |
|
Specifies a proportional font with serifs. |
|
Specifies a script font designed to mimic the appearance of handwriting. |
|
Specifies a proportional font without serifs. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_FontFamily">
<restriction base="xsd:string">
<enumeration value="decorative"/>
<enumeration value="modern"/>
<enumeration value="roman"/>
<enumeration value="script"/>
<enumeration value="swiss"/>
<enumeration value="auto"/>
</restriction>
</simpleType>