一种简单的方法是使用段落来处理Range
对象并简单地逐个插入新段落。
查看 API 文档会发现它Paragraphs
实现了一个Add
方法:
返回一个 Paragraph 对象,该对象表示添加到文档中的新的空白段落。(...) 如果未指定 Range,则新段落将添加到所选内容或范围之后或文档末尾。
资料来源:http: //msdn.microsoft.com/en-us/library/microsoft.office.interop.word.paragraphs.add (v=office.14).aspx
这样,就可以直接将新内容附加到文档中。
为了完整起见,我提供了一个示例,展示了解决方案的工作原理。样本循环通过一个for
循环,并为每次迭代插入:
该示例已实现为 C# 控制台应用程序,使用:
- .NET 4.5
- Microsoft Office 对象库版本 15.0,以及
- Microsoft Word 对象库版本 15.0
...即 MS Office 2013 附带的 MS Word Interop API。
using System;
using System.IO;
using Microsoft.Office.Interop.Word;
using Application = Microsoft.Office.Interop.Word.Application;
namespace StackOverflowWordInterop
{
class Program
{
static void Main()
{
// Open word and a docx file
var wordApplication = new Application() { Visible = true };
var document = wordApplication.Documents.Open(@"C:\Users\myUserName\Documents\document.docx", Visible: true);
// "10" is chosen by random - select a value that fits your purpose
for (var i = 0; i < 10; i++)
{
// Insert text
var pText = document.Paragraphs.Add();
pText.Format.SpaceAfter = 10f;
pText.Range.Text = String.Format("This is line #{0}", i);
pText.Range.InsertParagraphAfter();
// Insert table
var pTable = document.Paragraphs.Add();
pTable.Format.SpaceAfter = 10f;
var table = document.Tables.Add(pTable.Range, 2, 3, WdDefaultTableBehavior.wdWord9TableBehavior);
for (var r = 1; r <= table.Rows.Count; r++)
for (var c = 1; c <= table.Columns.Count; c++)
table.Cell(r, c).Range.Text = String.Format("This is cell {0} in table #{1}", String.Format("({0},{1})", r,c) , i);
// Insert picture
var pPicture = document.Paragraphs.Add();
pPicture.Format.SpaceAfter = 10f;
document.InlineShapes.AddPicture(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), "img_1.png"), Range: pPicture.Range);
}
// Some console ascii-UI
Console.WriteLine("Press any key to save document and close word..");
Console.ReadLine();
// Save settings
document.Save();
// Close word
wordApplication.Quit();
}
}
}