使用INCLUDETEXT字段访问包含在文档中的CustomXMLPart

时间:2012-11-28 09:09:11

标签: c# vsto ms-office openxml openxml-sdk

我有一个docx Word文档,其中包含与CustomXMLPart中的数据绑定的内容控件。

然后使用INCLUDETEXT将此文档(或其中的书签)包含在另一个Word文档中。

当第一个文档包含在第二个文档中时,是否有任何方法可以从原始文档中获取CustomXMLPart(我已经在Word中运行VSTO Word Addin查看文档)?

我想要做的是将它与第二个文档中已经存在的CustomXMLParts合并,以便内容控件仍然绑定到XMLPart中的数据。

或者,是否有其他方法可以在不使用INCLUDETEXT字段的情况下执行此操作?

1 个答案:

答案 0 :(得分:1)

我决定使用VSTO和IncludeText字段可能无法使用altChunks进行调查。

在打开文件之前,我已经使用Open XML SDK 2对文件进行了一些处理,因此可以将文档合并到那里所需的额外工作。

尽管使用altChunk方法将整个第二个文档嵌入到第一个文档中,包括它自己的CustomXmlParts,但是当打开文档时第二个文档被Word丢弃,而第二个文档与第一个文档合并。

我最终得到的代码类似于以下内容。它用altChunk数据替换定义的内容控件,并将特定的CustomXmlParts合并在一起。

    private static void CreateAltChunksInWordDocument(WordprocessingDocument doc, string externalDocumentPath)
    {
        foreach (var control in doc.ContentControls().ToList()) //Have to do .ToList() on this as when we update the Doc in the loop it stops enumerating otherwise
        {
            SdtProperties props = control.Elements<SdtProperties>().FirstOrDefault();
            if (props == null)
                continue;

            SdtAlias alias = props.Elements<SdtAlias>().FirstOrDefault();
            if (alias == null || !alias.Val.HasValue || alias.Val.Value != "External Template")
                continue;

            using (WordprocessingDocument externaldoc = WordprocessingDocument.Open(externalDocumentPath, false))
            {
                //Replace the Content Control with an AltChunk section, and stream in the external file
                string altChunkId = "AltChunkId" + Guid.NewGuid().ToString().Replace("{", "").Replace("}", "").Replace("-", "");

                AlternativeFormatImportPart chunk = doc.MainDocumentPart.AddAlternativeFormatImportPart(AlternativeFormatImportPartType.WordprocessingML, altChunkId);
                chunk.FeedData(File.OpenRead(externalDocumentPath));

                AltChunk altChunk = new AltChunk();
                altChunk.Id = altChunkId;

                OpenXmlElement parent = control.Parent;
                parent.InsertAfter(altChunk, control);
                control.Remove();

                XDocument xDocMain;
                CustomXmlPart partMain = MyCommon.GetMyXmlPart(doc.MainDocumentPart, out xDocMain);

                XDocument xDocExternal;
                CustomXmlPart partExternal = MyCommon.GetMyXmlPart(externaldoc.MainDocumentPart, out xDocExternal);

                if (xDocMain != null && partMain != null && xDocExternal != null && partExternal != null)
                {
                    MyCommon.MergeXmlPartFields(xDocMain, xDocExternal);

                    //Save the updated part
                    using (Stream outputStream = partMain.GetStream())
                    {
                        using (StreamWriter ts = new StreamWriter(outputStream))
                        {
                            ts.Write(xDocMain.ToString());
                        }
                    }
                }
            }
        }
    }