Hello. We are trying to get revision group texts. We are using the aspose.words library. When we compare documents with columns, only in the exported Word file we can see the revision description. When we try to get revisions group text, there is no information about column number change.
In case anything needs to be done to see the revision group text, please advise.
Aspose version 24.4
original
original.docx (11.5 KB)
modified
modified.docx (11.5 KB)
Document original= new Document("original.docx");
Document modified= new Document("modified.docx");
original.acceptAllRevisions();
modified.acceptAllRevisions();
original.compare(modified, "Testing", new Date());
original.save("Output.docx");
original.save("Output.pdf");
original.getRevisions().getGroups().forEach(revisionGroup -> System.out.println(revisionGroup.getText()));