<rtlGutter>
(Gutter on Right Side of Page)
If the gutter is set to the side of the page by the omission of the <gutterAtTop>
element (§2.15.1.49), then each section's gutter is placed at the left by default, unless that default is overridden by the <rtlGutter>
element.
<w:p> <w:pPr> <w:sectPr> <w:pgMar w:gutter="1440" …/> … </w:sectPr> </w:pPr> </w:p> ... <w:p> <w:pPr> <w:sectPr> <w:pgMar w:gutter="1440" …/> <w:rtlGutter w:val="0" /> … </w:sectPr> </w:pPr> </w:p> ... <w:p> <w:pPr> <w:sectPr> <w:pgMar w:gutter="1440" …/> <w:rtlGutter /> … </w:sectPr> </w:pPr> </w:p>
The first and second sections both place the gutter on the left side, the first by omission of the @rtlGutter
attribute, and the second by explicitly turning it off. The third section, however, moves the gutter to the right side via the use of the @rtlGutter
attribute. ]
If the <gutterAtTop>
element (§2.15.1.49) is specified and true, then each section's gutter is at the top and this setting is ignored.
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>