You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/word/how-to-accept-all-revisions-in-a-word-processing-document.md
+81-3Lines changed: 81 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Using the Open XML SDK, you can create document structure and content using stro
46
46
47
47
## ParagraphPropertiesChange Element
48
48
49
-
When you accept a revision mark, you change the properties of a paragraph either by deleting an existing text or inserting a new text. In the following sections, you read about three elements that are used in the code to change the paragraph contents, mainly, `<w: pPrChange>` (Revision Information for Paragraph Properties), `<w:del>` (Deleted Paragraph), and `<w:ins>` (Inserted Table Row) elements.
49
+
When you accept a revision mark, you change the properties of a paragraph either by deleting existing text or inserting new text. In the following sections, you read about three elements that are used in the code to change the paragraph contents, mainly, `<w: pPrChange>` (Revision Information for Paragraph Properties), `<w:del>` (Deleted Paragraph), and `<w:ins>` (Inserted Table Row) elements.
50
50
51
51
The following information from the [!include[ISO/IEC 29500 URL](../includes/iso-iec-29500-link.md)] specification introduces the `ParagraphPropertiesChange` element (`pPrChange`).
52
52
@@ -86,9 +86,12 @@ This element specifies that the paragraph mark delimiting the end of a paragraph
86
86
87
87
Consider a document consisting of two paragraphs (with each paragraph delimited by a pilcrow ¶):
88
88
89
-
 If the physical character delimiting the end of the first paragraph is deleted and this change is tracked as a revision, the following will result:
89
+

90
+
91
+
If the physical character delimiting the end of the first paragraph is deleted and this change is tracked as a revision, the following will result:
90
92
91
93

94
+
92
95
This revision is represented using the following WordprocessingML:
This element marks the end of a region where the move source contents are part of a single named move.
205
+
The following information from the [!include[ISO/IEC 29500 URL](../includes/iso-iec-29500-link.md)] specification
206
+
introduces the Move From Range End element (`moveFromRangeEnd`).
207
+
208
+
## The Moved To Element
209
+
The following information from the [!include[ISO/IEC 29500 URL](../includes/iso-iec-29500-link.md)] specification
210
+
introduces the MoveTo element (`moveTo`).
211
+
212
+
### moveTo (Move Destination Paragraph)
213
+
This element specifies that the parent paragraph has been moved to this location and tracked as a revision.
214
+
This does not imply anything about the revision state of the contents of the paragraph, and applies only to the existence of the paragraph as its own unique paragraph.
215
+
216
+
Consider a WordprocessingML document in which a paragraph of text is moved down in the document.
217
+
This moved paragraph would be represented using the following WordprocessingML markup:
0 commit comments