I am using DocX library to modify a word file. I replaced a text in this document as follow:
using (DocX document = DocX.Load(@"E:\Test.docx"))
{
document.ReplaceText("text", "replaced");
document.Save();
}
But, texts in Footer of the file are not replaced. The question is How can I modify texts in the Footer of the docx file?