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