Hey guys I am trying to manipulate a word .docx file using the openXML sdk and C#.
I can open the file fine and insert paragraphs but I need to insert a paragraph at a specific location in my document(after a certain paragraph in my body).
I have not been able to find anything useful online about how to accomplish this.
Can anyone point me in the right direction?
The solution that I have settled on(though i know there are other ways) was to add a bookmark to the document, find the bookmark using the SDK, and replaceing it with my list. Works great.