我有一个word文档文件,其中我添加了下一页的分节符,现在我想更改该页面的页眉和页脚。
示例场景,我有一个doc文件,其中有四个页眉和页脚,并在分节符号的下一页添加了第五页,我只想更改第五页的页眉和页脚。这可以通过取消选择Word应用程序中的“链接到上一个”按钮来手动实现,但我不知道如何使用XML更改它?
我在分节符中添加新页面的代码是:
class Program
{
static void Main(string[] args)
{
string path = @"C:\sample.docx";
string strtxt = "Hello This is done by programmatically";
OpenAndAddTextToWordDocument(path,strtxt);
}
public static void OpenAndAddTextToWordDocument(string filepath, string txt)
{
using (DocX document = DocX.Load(@"C:\Riyaz\sample.docx"))
{
document.InsertSectionPageBreak();
Paragraph p1 = document.InsertParagraph();
p1.Append("This is new section");
document.Save();
}
}
}
请帮忙。