Hi
Many a times we want to embed some document in the word file, with the help of Insert-> File-> Select File menu item. This will copy the content of the file to the word document. This can also be done programmatically.
String LocationOfFileToMerge = "C:\\Myfile.doc";
range.InsertFile(LocationOfFileToMerge,ref oMissing, ref oFalse, ref oFalse, ref oFalse);
We can also embed the document in the word file instead of copying the text of the document. In this case you can embed any kind of document.
Object NameForLabel = "File Name";