Hello,
I have problem with compare 2 word documents:
DocB.docx (18.6 KB)
DocA.docx (17.2 KB)
Following example code:
Document doc1=new Document("DocA.docx");
Document doc2=new Document("DocB.docx");
CompareOptions compareOptions = new CompareOptions();
doc1.compare(doc2, " ", Calendar.getInstance().getTime(), compareOptions);
doc1.save("Res.docx");
Give different result then comparing in word. Bullet list somehow keeps font family from previous list but in word it has proper font family:
Can we do something with this behavior?