<scr> (Script)

This element describes the script applied to the characters in the run. The XML includes the ASCII value of the character along with the script of the character. The application maps the ASCII value and script type to the appropriate Unicode range.
example: : Example:
<m:r> 
  <m:rPr>
    <m:scr m:val="fraktur"/>
    <m:sty m:val="p"/>
  </m:rPr>
  <m:t>a</m:t>
</m:r>
<m:r>
  <m:rPr>
    <m:scr m:val=“double-struck"/>
    <m:sty m:val="p"/>
  </m:rPr>
  <m:t>a</m:t>
</m:r>

Parent Elements

<rPr>7.1.2.91)

Attributes

Description

<val> (Value)

Specifies the script type of the parent element. Possible values are: double-struck, fraktur, monospace, roman, sans-serif, and script.

The possible values for this attribute are defined by the ST_Script simple type (§7.1.3.10).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Script">
	<attribute name="val" type="ST_Script"/>
</complexType>