使用DocX项目将表插入docx文件

时间:2013-11-26 17:23:14

标签: c#

我使用DocX项目创建一个word文档。

我需要在我的文档中插入表格,但我不知道该怎么做?

string fileName = @"D:\Users\John\Documents\DocXExample.docx";

// Create a document in memory:
var doc = DocX.Create(fileName);

// Insert a paragrpah:
//doc.InsertParagraph("This is my first paragraph");

// Save to the output directory:
doc.Save();

// Open in Word:
Process.Start("WINWORD.EXE", fileName);

1 个答案:

答案 0 :(得分:1)

示例代码:

Table t = document.AddTable(20,2);
t.Rows[0].Cells[0].Paragraphs.First().Append("value1");
t.Rows[1].Cells[0].Paragraphs.First().Append("value2");
t.Rows[2].Cells[0].Paragraphs.First().Append("value3");