I am trying to copy a word document to another without closing the target document. So, I do it like that:
temp_doc_.Content.Copy();
target_doc_.Content.Paste();
temp_doc_.Close(SaveChanges: false);
However, this doesn't copy some features like margins, header height, ... etc. It only copies section paragraphs. Does anyone know how to do a full copy so that they are really identical in everything ?