使用ContentControl将图片附加到Word

问题描述

我在某些内容控件中有一个Word模板文件,其中一个图片内容控件,标有 sign 。 我在这里阅读了许多文档和一些问题,例如我的问题,并到达了像这样的代码,但是它不起作用,也没有将图片添加到文档中,我不知道问题出在哪里。

 public void AddSignHidden(Microsoft.Office.Interop.Word._Document Doc,string SignImagePath)
        {

            ContentControls Ccontrol = Doc.SelectContentControlsByTag("__sign");

            foreach (ContentControl nativeControl in Ccontrol)
            {
                nativeControl.Range.Inlineshapes.AddPicture(SignImagePath,Type.Missing,true,Type.Missing);
            }

            Doc.Save();
            Doc.Close();
            Doc = null;

        }

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)