[Table of Contents] [docx version]

WordprocessingML Reference Material - Table of Contents

customXmlMoveFromRangeEnd (Custom XML Markup Move Source End)

This element specifies the end of a region within which all custom XML markup was moved to another location in the document and this move was tracked as a revision. The id attribute on this element shall be used to link this element with the corresponding custom XML move source start marker in the document.

Providing a physical representation of the start and end tags of custom XML markup results in regions which can be inserted and deleted independently, but cannot be encapsulated by a single revision element, since their representation in WordprocessingML is the start or end XML tag for the custom XML markup which it represents. Therefore, the start/end "cross structure" annotation format surrounds the WordprocessingML region to which this move source applies.

The following restrictions shall be applied to this element:

If this element occurs without a corresponding customXmlMoveFromRangeStart element (§2.13.5.9) with a matching id attribute value, then it shall be ignored and no move source information shall be applied to the custom XML elements by this element.

If this element and its paired start encapsulate a range with no custom XML markup, then they shall be ignored and may be omitted when the document is subsequently saved.

If this element and its paired start occur outside of a valid move source container (§2.13.5.24; §2.13.5.23) with a matching move destination container (§2.13.5.28; §2.13.5.27), then custom XML markup in this region shall be treated as if it was deleted

If multiple end elements exist with the same id attribute value, then the first instance in the document shall be used and subsequent elements should be treated as unmatched (no corresponding start).

[Example: Consider a three-paragraph document with a single block-level custom XML markup element, as follows:

<w:body>
<w:p/>
<w:customXml … >
<w:p/>
</w:customXml>
<w:p/>
</w:body>

If the second paragraph is moved to the end of the document with revisions enabled. This revision must therefore be stored using the custom XML markup revision "cross structure" syntax, as follows:

<w:body>
<w:p/>
<w:moveFromRangeStart w:id="0" w:name="move1" w:displacedByCustomXml="next"/>
<w:customXmlMoveFromRangeStart w:id="1"/>
<w:customXml … >
<w:p/>
</w:customXml>
<w:customXmlMoveFromRangeEnd w:id="1"/>
<w:moveFromRangeEnd w:id="0" w:displacedByCustomXml="prev"/>
<w:p/>
<w:moveToRangeStart w:id="2" w:name="move1" w:displacedByCustomXml="next"/>
<w:customXmlMoveToRangeStart w:id="3"/>
<w:customXml … >
<w:p/>
</w:customXml>
<w:customXmlMoveToRangeEnd w:id="3"/>
<w:moveFromRangeEnd w:id="2" w:displacedByCustomXml="prev"/>
</w:body>

The customXmlMoveFromRangeEnd element delimits the end of the region in which all custom XML elements have been moved from this location with revisions enabled. Since this element only affects custom XML, any text in the region is not revision marked moved by this element when present, but the corresponding physical characters for the custom XML element are. end example]

Parent Elements

body2.2.2); comment2.13.4.2); customXml2.5.1.3); customXml2.5.1.4); customXml2.5.1.5); customXml2.5.1.6); deg7.1.2.26); del2.13.5.12); den7.1.2.28); docPartBody2.12.6); e7.1.2.32); endnote2.11.2); fldSimple2.16.21); fName7.1.2.37); footnote2.11.10); ftr2.10.3); hdr2.10.4); hyperlink2.16.24); ins2.13.5.20); lim7.1.2.52); moveFrom2.13.5.21); moveTo2.13.5.26); num7.1.2.75); oMath7.1.2.77); p2.3.1.22); rt2.3.3.23); rubyBase2.3.3.26); sdtContent2.5.2.32); sdtContent2.5.2.33); sdtContent2.5.2.34); sdtContent2.5.2.35); smartTag2.5.1.9); sub7.1.2.112); sup7.1.2.114); tbl2.4.36); tc2.4.62); tr2.4.75); txbxContent2.17.1.1)

 

Attributes

Description

id (Annotation Identifier)

Specifies a unique identifier for an annotation within a WordprocessingML document. The restrictions on the id attribute, if any, are defined by the parent XML element.

 

If this attribute is omitted, then the document is non-conformant.

 

[Example: Consider an annotation represented using the following WordprocessingML fragment:

 

<w:… w:id="1" … >

</w:…>

 

The id attribute specifies that the ID of the current annotation is 1. This value is used to uniquely identify this annotation within the document content. end example]

 

The possible values for this attribute are defined by the ST_DecimalNumber simple type2.18.16).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_Markup">

   <attribute name="id" type="ST_DecimalNumber" use="required"/>

</complexType>