引用其他文档的内容

时间:2012-09-12 13:41:38

标签: ms-word word-2010

我们需要从其他2个文档的内容创建一个矩阵。例如:

  1. doc包含以下字段:

    4.2要求A.     嗒嗒

  2. doc包含以下字段:

    2.1分析A.   Blah Blah

  3. 我们要创建另一个文档(称为Traceability Matrix),如:

    Col1    Col2    Col3
    4.2     2.1     Blah Blah Blah
    

    4.2和2.1应该在doc3中动态更新。

    我们使用超链接,交叉引用进行了检查,但似乎没有任何内容可用于组合不同的文档。反正有吗?

    编辑: 这是一个例子:

    Technical Specification Num         Requirement Num     Requirement
    4.2                                 2.1                 A sentence that explains the relationship btw 2 cols: Technical Specification and Requirement Num
    

1 个答案:

答案 0 :(得分:1)

我现在已经创建了一个如何使用MS Word Interop和C#实现此功能的实例。

代码包含的注释应该解释最有趣的部分。

使用以下代码将示例实现为C#控制台应用程序:

  • .NET 4.5
  • Microsoft Office对象库15.0版和
  • Microsoft Word对象库15.0版

...即MS Office 2013预览版附带的MS Word Interop API。

using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Office.Interop.Word;
using Application = Microsoft.Office.Interop.Word.Application;

namespace WordDocStats
{
    internal class Program
    {
        private static void Main()
        {
            // Open word
            var wordApplication = new Application() { Visible = true };

            // Open document A, get its headings, and close it again
            var documentA = wordApplication.Documents.Open(@"C:\Users\MyUserName\Documents\documentA.docx", Visible: true);
            var headingsA = GetHeadingsInDocument(documentA);
            documentA.Close();

            // Same procedure for document B
            var documentB = wordApplication.Documents.Open(@"C:\Users\MyUserName\Documents\documentB.docx", Visible: true);
            var headingsB = GetHeadingsInDocument(documentB);
            documentB.Close();

            // Open the target document (document C)
            var documentC = wordApplication.Documents.Open(@"C:\Users\MyUserName\Documents\documentC.docx", Visible: true);

            // Add a table to it (the traceability matrix)
            // The number of rows is the number of headings + one row reserved for a table header
            documentC.Tables.Add(documentC.Range(0, 0), headingsA.Count+1, 3);

            // Get the traceability matrix
            var traceabilityMatrix = documentC.Tables[1];

            // Add a table header and border
            AddTableHeaderAndBorder(traceabilityMatrix, "Headings from document A", "Headings from document B", "My Description");

            // Insert headings from doc A and doc B into doc C's traceability matrix
            for (var i = 0; i < headingsA.Count; i++)
            {
                // Insert headings from doc A
                var insertRangeColOne = traceabilityMatrix.Cell(i + 2, 1).Range;
                insertRangeColOne.Text = headingsA[i].Trim();

                // Insert headings from doc B
                var insertRangeColTwo = traceabilityMatrix.Cell(i + 2, 2).Range;
                insertRangeColTwo.Text = headingsB[i].Trim();
            }

            documentC.Save();
            documentC.Close();

            wordApplication.Quit();
        }

        // Based on:
        // -> http://csharpfeeds.com/post/5048/Csharp_and_Word_Interop_Part_4_-_Tables.aspx
        // -> http://stackoverflow.com/a/1817041/700926
        private static void AddTableHeaderAndBorder(Table table, params string[] columnTitles)
        {
            const int headerRowIndex = 1;

            for (var i = 0; i < columnTitles.Length; i++)
            {
                var tableHeaderRange = table.Cell(headerRowIndex, i+1).Range;
                tableHeaderRange.Text = columnTitles[i];
                tableHeaderRange.Font.Bold = 1;
                tableHeaderRange.Font.Italic = 1;
            }

            // Repeat header on each page
            table.Rows[headerRowIndex].HeadingFormat = -1;

            // Enable borders
            table.Borders.Enable = 1;
        }

        // Based on:
        // -> http://stackoverflow.com/q/7084270/700926
        // -> http://stackoverflow.com/a/7084442/700926
        private static List<string> GetHeadingsInDocument(Document document)
        {
            object headingsAtmp = document.GetCrossReferenceItems(WdReferenceType.wdRefTypeHeading);
            return ((Array)(headingsAtmp)).Cast<string>().ToList();
        }
    }
}

基本上,代码首先从两个给定文档中加载所有标题并将它们存储在内存中。然后它打开目标文档,创建可追溯性矩阵并设置样式,最后,它将标题插入矩阵。

该代码基于以下假设:

  • 目标文档(documentC.docx)存在。
  • 两个输入文档(documentA.docx和documentB.docx)中的标题数量包含相同数量的标题 - 这个假设是根据您对不想要笛卡尔积的评论而做出的。

我希望这符合您的要求:)