我想在word中用代码插入一个外部的文件,比如word2003的文件,在这里用到了Selection.InlineShapes.AddOLEObject方法,问题是,如何用这个方法控制插入的位置?
比如以下代码
Word._Application wordApp = new Word.Application();
wordApp.Selection.TypeText("some thing");
object linktofile = false;
object filename ="D:\\test.doc";
object range = wordApp.Selection.Range;
wordApp.Selection.InlineShapes.AddOLEObject(ref type, ref filename,ref linktofile,ref linktofile,ref missing,ref missing ,ref missing,ref range);
运行代码插入的位置不是在some thing下边,为什么??