OPEN XML和Powertools

时间:2016-12-15 14:27:38

标签: openxml

我正在将几个单词文档合并在一起,最后一个是静态内容,我需要在文档末尾添加日期,但powertool WmlDocument对象似乎无法添加文本。我该如何添加文字?

List <Source> sources = new List<Source>();
sources.Add(new Source(report, false));
sources.Add(new Source(sig, false));
WmlDocument doc = DocumentBuilder.BuildDocument(sources);
doc.MainDocumentPart.Add() // nothing here works.
doc.MainDocumentPart.Add(new Text("stuff"));  // not working
doc.MainDocumentPart.Document  -- NULL
doc.SaveAs("blah.docx") //creates doc.

我不想将文件保存到磁盘然后打开它。

1 个答案:

答案 0 :(得分:0)

我使用WordprocessingDocument打开它并通过该对象模型进行编辑。