Hi Lagrange,
Thank you for contacting Telerik support.
The Bookmark itself is represented as a pair of BookmarkRangeStart and BookmarkRangeEnd objects. You could obtain all the BookmarkRangeStart elements using the EnumerateChildrenOfType() method:
The next snippet is demonstrating how you could insert text in a Bookmark:
For more information about Bookmarks you could refer to our documentation on the matter.
The form fields are not supported in RadWordsProcessing. We have already logged this request and you could vote and subscribe to the related public item in the feedback portal in order to receive updates about any status changes on it.
Hope this information is useful.
Regards,
Tanya
Telerik
Thank you for contacting Telerik support.
The Bookmark itself is represented as a pair of BookmarkRangeStart and BookmarkRangeEnd objects. You could obtain all the BookmarkRangeStart elements using the EnumerateChildrenOfType() method:
IEnumerable<BookmarkRangeStart> bookmarks = document.EnumerateChildrenOfType<BookmarkRangeStart>();The next snippet is demonstrating how you could insert text in a Bookmark:
BookmarkRangeStart first = bookmarks.First();int index = first.Paragraph.Inlines.IndexOf(first);first.Paragraph.Inlines.Insert(index + 1, new Run(document) { Text = "In bookmark" });For more information about Bookmarks you could refer to our documentation on the matter.
The form fields are not supported in RadWordsProcessing. We have already logged this request and you could vote and subscribe to the related public item in the feedback portal in order to receive updates about any status changes on it.
Hope this information is useful.
Regards,
Tanya
Telerik
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items