C# 操作word 指定书签位置插入图片并设置图片大小和位置

      object Nothing = System.Reflection.Missing.Value;
        //创建一个名为wordApp的组件对象
        Application wordApp = new Application();

        //word文档位置

        object filename = @"E:\ceshi.doc";
       
        //定义该插入图片是否为外部链接
        object linkToFile = true;

        //定义插入图片是否随word文档一起保存
        object saveWithDocument = true;

        //打开word文档
        Microsoft.Office.Interop.Word.Document doc = wordApp.Documents.Open(ref filename, ref Nothing, ref Nothing, ref Nothing,
           ref Nothing, ref Nothing, ref Nothing, ref Nothing,
           ref Nothing, ref Nothing, ref Nothing, ref Nothing,
           ref Nothing, ref Nothing, ref Nothing, ref Nothing);
        try
        {
            //标签
            object bookMark = "para04";
            //图片
            string replacePic = @"E:\1.gif";

            if (doc.Bookmarks.Exists(Convert.ToString(bookMark)) == true)
            {
                //查找书签
                doc.Bookmarks.get_Item(ref bookMark).Select();
                //设置图片位置
                wordApp.Selection.ParagraphFormat.Alignment = Microsoft.Office.Interop.Word.WdParagraphAlignment.wdAlignParagraphRight;
                //在书签的位置添加图片
                InlineShape inlineShape = wordApp.Selection.InlineShapes.AddPicture(replacePic, ref linkToFile, ref saveWithDocument, ref Nothing);
                //设置图片大小
                inlineShape.Width = 20;
                inlineShape.Height = 20;

                doc.Save();
           }
            else
            {

                //word文档中不存在该书签,关闭文档

                doc.Close(ref Nothing,ref Nothing,ref Nothing);
            }
          
        }
        catch
        {
        }

转载于:https://www.cnblogs.com/dqdxf/archive/2012/02/27/2369523.html

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值