日期:2014-05-18  浏览次数:20880 次

用InlineShapes.AddOLEControl添加图片
object anchor = thisApplication.Selection.Range;
  object classtype = "Forms.Image.1";
  Word.InlineShape MyInlineShape = thisDocument.InlineShapes.AddOLEControl(ref classtype, ref anchor);
用这种方式添加图片,而不是用thisDocument.InlineShapes.AddPicture(ImageName, ref linkToFile, ref saveWithDocument, ref anchor); 这种方式
用C#怎么绑定一个image(drawing下的) 怎么写?

------解决方案--------------------
不知道怎么做