首页 新闻 会员 周边 捐助

c# office编程中用到的Selection.InlineShapes.AddOLEObject

0
悬赏园豆:100 [已关闭问题] 关闭于 2012-01-15 16:54

我想在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下边,为什么??

小yang的主页 小yang | 初学一级 | 园豆:69
提问于:2012-01-13 10:04
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册