Novacode docx标头替换文本问题

时间:2016-04-23 22:23:29

标签: header novacode-docx

我试图替换标题中的文字并且它无效。

Replacetext正在处理文档的主体。

当我看到当地人时,我可以看到这个错误:"' Novacode.DocX.Headers.get returns.first.Sections'抛出类型' System.NullReferenceException'"

非常感谢任何帮助,

谢谢,  Lbob

1 个答案:

答案 0 :(得分:0)

如果我能看到你的代码会有所帮助,但我猜我可以试着以某种方式帮助你。

这就是我用标题代替[tag]的方式:

using (DocX document = DocX.Create(@"docs\myDoc.docx"))
{
    document.Headers.first.ReplaceText("[tag]", "something");
}

希望这会有所帮助