I assume v2.0 is better... they have some nice "how to:..." examples but bookmarks don't seem to act as obviously as say a Table... a bookmark is defined by two XML elements BookmarkStart & BookmarkEnd. We have some templates with text in as bookmarks and we simply want to replace bookmarks with some other text... no weird formatting is going on but how do I select/replace bookmark text?
|
feedback
|
|
Here's my approach after using you guys as inspiration:
| |||
|
feedback
|
|
I just figured this out 10 minutes ago so forgive the hackish nature of the code. First I wrote a helper recursive helper function to find all the bookmarks:
That returns me a Dictionary that I can use to part through my replacement list and add the text after the bookmark:
From what I can tell inserting into and replacing the bookmarks looks harder. When I used InsertAt instead of InsertIntoSelf I got: "Non-composite elements do not have child elements." YMMV | |||||
feedback
|
|
Here is how i do it and VB to add/replace text between bookmarkStart and BookmarkEnd.
| |||
|
feedback
|
|
Here is how I do it in VB.NET:
| ||||
|
feedback
|
|
Replace bookmarks with a single content (possibly multiple text blocks).
First, the existing content between start and end is removed. Then a new run is added directly behind the start (before the end). However, not sure if the bookmark is closed in another section when it was opened or in different table cells, etc. .. For me it's sufficient for now. | |||||
feedback
|
|
The accepted answer and some of the others make assumptions about where the bookmarks are in the document structure. Here's my C# code, which can deal with replacing bookmarks that stretch across multiple paragraphs and correctly replace bookmarks that do not start and end at paragraph boundaries. Still not perfect, but closer... hope it's useful. Edit if you find more ways to improve it!
| ||||
|
feedback
|