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);

     

     

           

           

     

        }

    }

  • 相关阅读:
    #415 Div2 Problem C Do you want a data? (math && 前后缀和 && 快速幂)
    KMP模版 && KMP求子串在主串出现的次数模版
    Codeforces 1140G Double Tree 倍增 + dp
    Codeforces 1140F Extending Set of Points 线段树 + 按秩合并并查集 (看题解)
    Codeforces 442D Adam and Tree dp (看题解)
    DC3求后缀数组板子
    Codeforces 865C Gotta Go Fast 二分 + 期望dp (看题解)
    Codeforces 1137D Cooperative Game (看题解)
    Codeforces 1139E Maximize Mex 二分图匹配
    Codeforces 1139D Steps to One dp
  • 原文地址:https://www.cnblogs.com/huanglexian/p/3567017.html
Copyright © 2011-2022 走看看