GroupDocs.Comparison allows you to get revisions from a DOCX file format, process, and save the processing result.
To obtain revisions from a document, accept or reject revisions, and write the processing result to the output file, follow these steps:
Instantiate the RevisionHandler object. Specify the source document path or stream.
Call the getRevisions method to get the revision list.
Call the setAction property of the object to be changed. Specify the RevisionAction.ACCEPT or RevisionAction.REJECT value.
Call the applyRevisionChanges method. Specify the created instance of the ApplyRevisionOptions class and path or stream of the output document, collecting changes in the revisions.
You can process all changes together within one action. To handle all changes at once, follow these steps:
Instantiate the RevisionHandler object. Specify the source document path or stream.
Call the applyRevisionChanges method. Specify the ApplyRevisionOptions object and one of the (RevisionAction.Accept, RevisionAction.Reject or RevisionAction.NONE) values.
The main properties of the ApplyRevisionOptions class are as follows:
Changes is a list of revision changes that need to be applied to the final document
CommonHandler allows you to define one action to handle all revision
If you do not specify the path or file to the output document for the applyRevisionChanges method, the source file is rewritten.
The following code snippets show how to get revisions from a document, accept or reject the detected revisions and save changes to the output document: