[Table of Contents] [docx version]
WordprocessingML Reference Material - Table of Contents
ST_TextScale (Text Expansion/Compression Percentage)
This simple type specifies that the percentage by which the contents of a run shall be expanded or compressed with respect to its normal (100%) character width, with a minimum width of 1% and maximum width of 600%.
[Example: Consider a run of text which shall be compressed to 200% when displaying each character within the contents of the run. This constraint is specified using the following WordprocessingML:
<w:rPr>
<w:w w:val="50"/>
</w:rPr>
This run explicitly declares that the w value is 50, so the contents of this run will appear at 50% of their normal character width by compressing the width of each character. end example]
This simple type's contents are a restriction of the XML Schema integer datatype.
This simple type also specifies the following restrictions:
• This simple type has a minimum value of greater than or equal to 0.
• This simple type has a maximum value of less than or equal to 600.
Referenced By |
w@val (§2.3.2.41) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_TextScale">
<restriction base="xsd:integer">
<minInclusive value="0"/>
<maxInclusive value="600"/>
</restriction>
</simpleType>