<ST_Theme>
(Theme Font)
This simple type specifies a theme font type which may be referenced as a theme font within the parent run properties. This theme font is a reference to one of the predefined theme fonts, located in the document's Theme part,which allows for font information to be set centrally in the document.
<w:rPr> <w:rFonts w:asciiTheme=”majorAscii” /> </w:rPr>
The @ascii
attribute specifies that the run shall use the majorAscii
theme font as defined in the document's themes part for all text in the ASCII range. ]
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 the current font is a reference to the major theme font for the ASCII range. |
|
Specifies that the current font is a reference to the major theme font for the Complex Script range. |
|
Specifies that the current font is a reference to the major theme font for the East Asian range. |
|
Specifies that the current font is a reference to the major theme font for the High ANSI range. |
|
Specifies that the current font is a reference to the minor theme font for the ASCII range. |
|
Specifies that the current font is a reference to the minor theme font for the Complex Script range. |
|
Specifies that the current font is a reference to the minor theme font for the East Asian range. |
|
Specifies that the current font is a reference to the minor theme font for the High ANSI range. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Theme">
<restriction base="xsd:string">
<enumeration value="majorEastAsia"/>
<enumeration value="majorBidi"/>
<enumeration value="majorAscii"/>
<enumeration value="majorHAnsi"/>
<enumeration value="minorEastAsia"/>
<enumeration value="minorBidi"/>
<enumeration value="minorAscii"/>
<enumeration value="minorHAnsi"/>
</restriction>
</simpleType>