<r>
(Text Run)
This element specifies a run of content in the parent field, hyperlink, custom XML element, structured document tag, smart tag, or paragraph.
The contents of a run in a WordprocessingML document shall consist of any combination of run content.
<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 <r>
element is the container for all of the content in the run, which in this example includes both a run in the paragraph and a run within a simple field. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
Specifies a unique identifier used to track the editing session when the run 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). |
|
Specifies a unique identifier used to track the editing session when the run 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). |
|
Specifies a unique identifier used to track the editing session when the run properties were 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_R">
<sequence>
<group ref="EG_RPr" minOccurs="0"/>
<group ref="EG_RunInnerContent" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="rsidRPr" type="ST_LongHexNumber"/>
<attribute name="rsidDel" type="ST_LongHexNumber"/>
<attribute name="rsidR" type="ST_LongHexNumber"/>
</complexType>