i have an existing word Document with bookmarks. I need To associate a set of comments To each bookmark.
Bookmark bookmark = Document.Range.Bookmarks[bookmarkName];
if (bookmark != null)
{
Comment comment = new Com…...code: Document doc = new Document(@"C:\Temp\in.docx"); foreach (Bookmark...(Bookmark bk in doc.Range.Bookmarks) { // Create comment. Comment...