<doNotSuppressIndentation>
(Do Not Ignore Floating Objects When Calculating Paragraph Indentation)
This element specifies whether applications should ignore the presence of floating objects when calculating the starting position of paragraphs which are wrapped around floating objects defined using the Vector Markup Language (VML) syntax.
This element, when present with a @val
attribute value of true
(or equivalent), specifies that floating objects shall always impact paragraphs on the same line in two ways:
- If the paragraph is not numbered, then it shall tightly wrap any floating object which precedes it on the same line, ignoring its own indentation settings.example: : A paragraph with a 1" left indent shall tightly wrap a floating object which appears at only 0.25" on the same line.
- If the paragraph is numbered using the
<numPr>
element (§2.3.1.19), then it shall calculate and use its full indent relative to the edge of the floating object, not relative to the edge of the page.example: : A numbered paragraph with a 1" left indent shall appear 1.5" into the page if it is preceded by a floating object which appears at 0.5" on the same line.
The default presentation would have no impact on the paragraphs based on that floating object, since two two do not intersect:
However, if this compatibility setting is turned on:
<w:compat> <w:doNotSuppressIndentation /> </w:compat>
Then the two alternate rules defined above would apply, resulting in the following output:
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies a binary value for the property defined by the parent XML element. A value of A value of example:
<w:… w:val="off"/> The The possible values for this attribute are defined by the ST_OnOff simple type (§2.18.67). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_OnOff">
<attribute name="val" type="ST_OnOff"/>
</complexType>