<p>
(Paragraph)
This element specifies a paragraph of content in the document.
The contents of a paragraph in a WordprocessingML document shall consist of any combination of the following four types of content:
Paragraph properties
Annotations (bookmarks, comments, revisions)
Custom markup
Run level content (fields, hyperlinks, runs)
<w:document> <w:body> <w:p> <w:r> <w:t>Text</w:t> </w:r> <w:fldSimple w:instr="AUTHOR"> <w:r> <w:t>Author Name</w:t> </w:r> </w:fldSimple> </w:p> </w:body> </w:document>
The <p>
element is the container for all of the content in the paragraph, which in this example includes both a text run and a simple field. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
Specifies a unique identifier used to track the editing session when the paragraph was deleted from the main document. All A producer may choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document. The possible values for this attribute are defined by the ST_LongHexNumber simple type (§2.18.57). |
|
This attribute specifies a unique identifier used to track the editing session when the paragraph's properties were last modified in this document. All A producer may choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document. The possible values for this attribute are defined by the ST_LongHexNumber simple type (§2.18.57). |
|
This attribute specifies a unique identifier used to track the editing session when the paragraph was added to the main document. All A producer may choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document. The possible values for this attribute are defined by the ST_LongHexNumber simple type (§2.18.57). |
|
This attribute specifies a unique identifier used for all runs in this paragraph which do not explicitly declare an All A producer may choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document. The possible values for this attribute are defined by the ST_LongHexNumber simple type (§2.18.57). |
|
This attribute specifies a unique identifier used to track the editing session when the glyph character representing the paragraph mark was last modified in the main document. All A producer may choose to increment the revision save ID value to indicate subsequent editing sessions to indicate the order of the modifications relative to other modifications in this document. The possible values for this attribute are defined by the ST_LongHexNumber simple type (§2.18.57). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_P">
<sequence>
<element name="pPr" type="CT_PPr" minOccurs="0"/>
<group ref="EG_PContent" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="rsidRPr" type="ST_LongHexNumber"/>
<attribute name="rsidR" type="ST_LongHexNumber"/>
<attribute name="rsidDel" type="ST_LongHexNumber"/>
<attribute name="rsidP" type="ST_LongHexNumber"/>
<attribute name="rsidRDefault" type="ST_LongHexNumber"/>
</complexType>