Aspose words java version: 24.10
We have a specific usecase on extracting certain pages of a large document that we want to be splitted to a new document.
We are using the extractPages
function.
During the extraction, revisions for changes and comments were preserved and being extracted properly, However, the “likes” on speciifc comments were not.
is there a specific parameter that has to be filled or is this not supported at all?
Document srcDoc = new Document("sample.docx");
Document splitDocument = srcDoc.extractPages(0, 1);
splitDocument.save("result.docx");
I have attached a sample document:
sample.docx (16.2 KB)