// Load the destination document (the document into which we will insert another document). Document destination = new Document("Destination.docx"); // Load the source document (the document to be ...
// Load the source document that will be inserted. Document srcDoc = new Document("Source.docx"); // Create a new (or load an existing) destination document. Document dstDoc = new Document(); // Use ...