zoukankan      html  css  js  c++  java
  • Word的替换文字与图片

    using System;

    using System.Collections;

    using System.Configuration;

    using System.Data;

    using System.Linq;

    using System.Web;

    using System.Web.Security;

    using System.Web.UI;

    using System.Web.UI.HtmlControls;

    using System.Web.UI.WebControls;

    using System.Web.UI.WebControls.WebParts;

    using System.Xml.Linq;

    using Word = Microsoft.Office.Interop.Word;

     

    public partial class Tgfb : System.Web.UI.Page

    {

        protected void Page_Load(object sender, EventArgs e)

        {

            object oMissing = System.Reflection.Missing.Value;

            Word._Application oWord;

            Word._Document oDoc;

            oWord = new Word.Application();

     

            object fileName = @"d:/websitepf/docs/2.doc";

     

            oWord.Visible = true;

            oDoc = oWord.Documents.Open(ref fileName,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

     

            object replaceAll = Word.WdReplace.wdReplaceAll;

     

            oWord.Selection.Find.ClearFormatting();

            oWord.Selection.Find.Text = "[[ReportCode]]";

     

            oWord.Selection.Find.Replacement.ClearFormatting();

            oWord.Selection.Find.Replacement.Text = "WT-121221-21212";

     

     

     

     

            oWord.Selection.Find.Execute(

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

     

     

     

            oWord.Selection.Find.ClearFormatting();

     

            oWord.Selection.Find.Text = "[[SampleName]]";

            oWord.Selection.Find.Replacement.ClearFormatting();

     

            oWord.Selection.Find.Replacement.Text = "罗的草";

     

     

     

            oWord.Selection.Find.Execute(

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

     

     

     

     

     

            object LinkToFile = false ;

            object SaveWithDocument = true ;

     

            string picfileName = @"d:/websitepf/images/cm.png";

     

     

     

            oWord.Selection.Find.ClearFormatting();

     

            oWord.Selection.Find.Text = "[[pic1]]";

     

            oWord.Selection.Find.Execute(

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);   

     

     

            object Anchor = oWord.Selection.Range;

            //oDoc.InlineShapes.AddPicture(picfileName, ref LinkToFile, ref SaveWithDocument, ref Anchor);

            object left = 0;

            object top = 0;

            object width = 100;

            object height =200;

            Anchor = oWord.Selection.Range;

            oDoc.Shapes.AddPicture(picfileName, ref LinkToFile, ref SaveWithDocument, ref left, ref top, ref width, ref height, ref  Anchor);

     

            oWord.Selection.Find.Replacement.ClearFormatting();

     

            oWord.Selection.Find.Replacement.Text = "";

     

            oWord.Selection.Find.Execute(

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

          

     

            picfileName = @"d:/websitepf/images/headerbk.png";

     

     

     

                    object dummy=System.Reflection.Missing.Value;

     

                    object count=1;         

     

                    object Unit=Word.WdUnits.wdCharacter;

     

                    oWord.Selection.MoveRight (ref Unit,ref count,ref dummy); 

     

    ///-----------------------------------------------------------------

     

            oWord.Selection.Find.ClearFormatting();

     

            oWord.Selection.Find.Text = "[[pic2]]";

            oWord.Selection.Find.Execute(

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

     

            left = 0;

    top = 0;

     width = 300;

     height = 300;

            Anchor = oWord.Selection.Range;

            oDoc.Shapes .AddPicture (picfileName, ref LinkToFile, ref SaveWithDocument, ref left,ref top,ref width,ref height ,ref  Anchor);

            //oDoc.InlineShapes.AddPicture(picfileName, ref LinkToFile, ref SaveWithDocument, ref  Anchor);

     

     

             oWord.Selection.Find.Replacement.ClearFormatting();

     

            oWord.Selection.Find.Replacement.Text = "";

     

            oWord.Selection.Find.Execute(

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,

                                            ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing);

     

     

           

           

     

        }

    }

  • 相关阅读:
    Base64
    HBase搭建
    解决Zookeeper无法启动的问题
    docker基础知识之挂载本地目录
    VMware升级到15版本虚拟机黑屏的解决方法
    docker端口映射或启动容器时报错Error response from daemon: driver failed programming external connectivity on endpoint
    MQTT 入门介绍
    OpeTSDB的Configuration配置
    js中ES6的Set的基本用法
    Review-JVM
  • 原文地址:https://www.cnblogs.com/huanglexian/p/3567017.html
Copyright © 2011-2022 走看看