使用OpenXML创建单词以插入新的MergeField

时间:2017-12-11 07:55:54

标签: c# ms-word vsto openxml word-addins

我是VSTO和OpenXML的新手,我想开发一个Word插件。这个加载项应该使用OpenXML,add in应该在文档中添加一个MergeField,我实际上可以使用ConsoleApp添加MergeField但是我想从Word中插入MergeField加入到当前打开的文档中。

所以我在ButtonClick

中有这个代码
// take current file location
            var fileFullName = Globals.ThisAddIn.Application.ActiveDocument.FullName;

            Globals.ThisAddIn.Application.ActiveDocument.Close(WdSaveOptions.wdSaveChanges, WdOriginalFormat.wdOriginalDocumentFormat, true);

            // function to insert new field here
            OpenAndAddTextToWordDocument(fileFullName, "username");




            Globals.ThisAddIn.Application.Documents.Open(fileFullName);

我创建了应该添加新MergeField的函数:

public static DocumentFormat.OpenXml.Wordprocessing.Paragraph OpenAndAddTextToWordDocument(string filepath, string txt)
        {
            // Open a WordprocessingDocument for editing using the filepath.
            WordprocessingDocument wordprocessingDocument =
            WordprocessingDocument.Open(filepath, true);

            // Assign a reference to the existing document body.
            Body body = wordprocessingDocument.MainDocumentPart.Document.Body;


            // add text

            string instructionText = String.Format(" MERGEFIELD  {0}  \\* MERGEFORMAT", txt);
            SimpleField simpleField1 = new SimpleField() { Instruction = instructionText };

            Run run1 = new Run();

            RunProperties runProperties1 = new RunProperties();
            NoProof noProof1 = new NoProof();

            runProperties1.Append(noProof1);
            Text text1 = new Text();
            text1.Text = String.Format("«{0}»", txt);

            run1.Append(runProperties1);
            run1.Append(text1);

            simpleField1.Append(run1);

            DocumentFormat.OpenXml.Wordprocessing.Paragraph paragraph = new DocumentFormat.OpenXml.Wordprocessing.Paragraph();
            paragraph.Append(new OpenXmlElement[] { simpleField1 });
            return paragraph;




        // Close the handle explicitly.
        wordprocessingDocument.Close();

但是有些东西在这里不起作用,当我使用添加内容时它没有做任何事情 谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

添加try / catch,您可能会发现它无法打开该文件,因为它当前已打开进行编辑。

OpenXML SDK是一个用于写入Office文件而无需通过Office接口的库。但是,您在尝试使用Office界面时也是如此,因此您实际上只是尝试采用两种方法。除非您先关闭文档,否则这不会起作用。

但您可能想要做的是使用VSTO。在VSTO中,每个文档都有一个Fields集合,您可以使用它来添加字段。

Fields.Add(Range, Type, Text, PreserveFormatting)