Currently I retrieve footnote text in a paragraph using
foreach (Microsoft.Office.Interop.Word.Paragraph para in doc.Paragraphs)
{
Microsoft.Office.Interop.Word.Range range = para.Range.Duplicate;
string x = "";
for (int i = 1; i <= para.Range.Footnotes.Count; i++)
{
x = para.Range.Footnotes[i].Range.Text;
}
}
But the text "x" I want to append next to footnote script in the paragraph for processing. I would like to know if there is anyway to navigate using location or split the paragraph using any delimiter for footnote marker so that I can recreate the text with body and footnote text appended to it.