3.1.3.1.5 moveTo (Move Destination Math Control Character)

This element specifies that the Office Open XML Math control character contained within it shall be treated as content that has been moved to this location and tracked as a revision.

The following restrictions shall be applied to this content:

  • If this element occurs outside of a valid move destination container (§"[ISO/IEC-29500-1] §17.13.5.28; moveToRangeStart"; §"[ISO/IEC-29500-1] §17.13.5.27; moveToRangeEnd") for which a matching move source container (§"[ISO/IEC-29500-1] §17.13.5.24; moveFromRangeStart"; §"[ISO/IEC-29500-1] §17.13.5.23; moveFromRangeEnd") exists in the document, then content in this region shall be treated as inserted, rather than moved.

Word ignores this element.

Parent Elements

ctrlPr ("[ISO/IEC-29500-1] §22.1.2.23")

Child Elements

Subclause

del (Deleted Math Control Character)

"[ISO/IEC-29500-1] §17.13.5.13"

ins (Inserted Math Control Character)

"[ISO/IEC-29500-1] §17.13.5.16"

rPr (Run Properties)

"[ISO/IEC-29500-1] §17.3.2.28"

Attributes

Description

author (Annotation Author)

Specifies the author for an annotation within a WordprocessingML document.

 [Example: Consider a comment represented using the following WordprocessingML fragment:

 <w:…   w:id="1" w:author="Example Author">
     …
 </w:…>

The author attribute specifies that the author of the current annotation is Example Author, which may be used as desired. end example]

The possible values for this attribute are defined by the ST_String255 simple type (§3.1.3.3.9, ST_String255).

date (Annotation Date)

Specifies the date information for an annotation within a WordprocessingML document.

If this attribute is omitted, then no date information shall be associated with the parent annotation type.

[Example: Consider a comment represented using the following WordprocessingML fragment:

 <w:…   w:id="1" w:date="2006-01-01T10:00:00">
     …
 </w:…>

The date attribute specifies that the date of the current annotation is January 1st 2006 at 10:00 AM, which may be used as desired. end example]

The possible values for this attribute are defined by the ST_DateTime simple type (§3.1.3.3.2, ST_DateTime).

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_MarkupId simple type (§3.1.3.3.3, ST_MarkupId).

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

 <complexType name="CT_MathCtrlMove">
   <complexContent>
     <extension base="CT_TrackChange">
       <choice minOccurs="0">
         <group ref="EG_RPr"/>
         <group ref="EG_MathCtrlIns"/>
         <group ref="EG_MathCtrlDel"/>
       </choice>
     </extension>
   </complexContent>
 </complexType>