[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

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.

[Example: Consider a run of ASCII text which shall be displayed using the majorASCII theme font. This requirement would be specified as follows in the resulting WordprocessingML:

<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. 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

majorAscii (Major ASCII Theme Font)

Specifies that the current font is a reference to the major theme font for the ASCII range.

majorBidi (Major Complex Script Theme Font)

Specifies that the current font is a reference to the major theme font for the Complex Script range.

majorEastAsia (Major East Asian Theme Font)

Specifies that the current font is a reference to the major theme font for the East Asian range.

majorHAnsi (Major High ANSI Theme Font)

Specifies that the current font is a reference to the major theme font for the High ANSI range.

minorAscii (Minor ASCII Theme Font)

Specifies that the current font is a reference to the minor theme font for the ASCII range.

minorBidi (Minor Complex Script Theme Font)

Specifies that the current font is a reference to the minor theme font for the Complex Script range.

minorEastAsia (Minor East Asian Theme Font)

Specifies that the current font is a reference to the minor theme font for the East Asian range.

minorHAnsi (Minor High ANSI Theme Font)

Specifies that the current font is a reference to the minor theme font for the High ANSI range.

 

Referenced By

rFonts@asciiTheme2.3.2.24); rFonts@cstheme2.3.2.24); rFonts@eastAsiaTheme2.3.2.24); rFonts@hAnsiTheme2.3.2.24)

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>