在保留标题的同时合并多个Word文档 - .Net Office Automation

时间:2012-06-12 15:17:54

标签: c# ms-word office-interop

我希望合并多个word文档,同时保留每个文档的页眉和页脚。下面的代码是合并文档,但也合并了页眉和页脚:

public static void Merge(List filesToMerge, string outputFilename)
{
    Application wordApplication = null;
    Document wordDocument = null;

    try
    {
        // Create a new Microsoft Word application object
        wordApplication = new Application();
        wordApplication.Visible = false;
        wordApplication.ScreenUpdating = false;

        // Create a new file based on our template
        object defaultTemplate = @"Normal.dotm";
        wordDocument = wordApplication.Documents.Add(ref defaultTemplate);

        // Make a Word selection object.
        Selection selection = wordApplication.Selection;

        // Loop thru each of the Word documents
        foreach (string file in filesToMerge)
        {
            // Insert the files to our template
            selection.InsertFile(file);
            object pageBreak = WdBreakType.wdSectionBreakNextPage;
            selection.InsertBreak(ref pageBreak);
        }

        // Save the document to it's output file.
        object outputFile = outputFilename;
        wordDocument.SaveAs(ref outputFile);
    }
    catch (Exception ex)
    {
        Console.WriteLine("Error while conversion. Details: " + ex);
    }
    finally
    {
        MSWordCleanup(wordApplication, wordDocument);
    }
}

有没有这样做?

1 个答案:

答案 0 :(得分:0)

通过这些培训课程可能对您有所帮助: http://office.microsoft.com/en-us/word-help/headers-and-footers-from-basic-to-elaborate-RZ001021662.aspx

虽然这不会以“自动化形式”给出答案,但您可能已经足够找出答案了。