Hi,
After running the code below the second Run in the saved document has italic set to true even though it was set to false in the original document. Can you please check this out?
Thanks,
Zeljko
Code that reproduces the issue:
Document doc = new Document("Test1.doc");
Run run = (Run) doc.getChild(NodeType.RUN, 0, true);
Run run1 = (Run) doc.getChild(NodeType.RUN, 1, true);
DocumentBuilder db = new DocumentBuilder(doc);
db.insertNode(run);
db.insertParagraph();
db.insertNode(run1);
doc = db.getDocument();
doc.save("Test2.doc");