<contextualSpacing> (Ignore Spacing Above and Below When Using Identical Styles)
<spacing> element (§2.3.1.33), should not be applied when the preceding and following paragraphs are of the same paragraph style, affecting the top and bottom spacing respectively. If this element is omitted on a given paragraph, its value is determined by the setting previously set at any level of the style hierarchy (i.e. that previous setting remains unchanged). If this setting is never specified in the style hierarchy, then spacing is not ignored. If it is present, then the spacing above or below on this paragraph is subtracted from the spacing which would have been present if contextual spacing was off, never going below zero.
<w:p>
<w:pPr>
<w:pStyle w:val="TestParagraphStyle" />
<w:spacing w:after="200"/>
<w:contextualSpacing/>
</w:pPr>
…
</w:p>
<w:p>
<w:pPr>
<w:pStyle w:val="TestParagraphStyle" />
<w:spacing w:before="240"/>
</w:pPr>
…
</w:p>
The first paragraph specifies a spacing @after of 10 points, and the second paragraph specifies a spacing @before of 12 points, therefore according to the rules on the <spacing> element, the net paragraph spacing should be 12 points. However, since the first paragraph specifies that its spacing should be omitted between paragraphs of the same style, and the two paragraphs use the same TestParagraphStyle, that value is subtracted from the total, therefore the paragraphs are spaced by 2 points. ]
Parent Elements |
|---|
|
Attributes |
Description |
|---|---|
|
Specifies a binary value for the property defined by the parent XML element. A value of A value of <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>