<pPr>
(Paragraph Properties)
This element specifies the set of paragraph properties which comprise the default paragraph properties for the current WordprocessingML document. [: The reason that a <pPr>
element is present within the <pPrDefault>
element is to allow for easy repurposing of any set of paragraph properties within a WordprocessingML document - since the paragraph properties are always child elements of a single <pPr>
element, that element can simply be relocated in its entirety to the desired new location without additional modifications. ]
If this element is omitted, then the default paragraph properties for the current document are non-existent (i.e. there are no default paragraph properties, and the defaults are therefore application-defined).
<w:docDefaults> <w:pPrDefault> <w:pPr> <w:jc w:val="center"/> </w:pPr> </w:pPrDefault> … </w:docDefaults>
The <pPr>
element as a child of the <pPrDefault>
element contains the set of default paragraph properties for this document - in this case, a justification value of center
. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_PPr">
<complexContent>
<extension base="CT_PPrBase">
<sequence>
<element name="rPr" type="CT_ParaRPr" minOccurs="0"/>
<element name="sectPr" type="CT_SectPr" minOccurs="0"/>
<element name="pPrChange" type="CT_PPrChange" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>