-
Notifications
You must be signed in to change notification settings - Fork 41
Added new kb article radwordsprocessing-find-table-by-bookmark #445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added new kb article radwordsprocessing-find-table-by-bookmark #445
Conversation
…okmark-faa605e770b34efbb917964e9b91d58b
|
|
||
| ## Description | ||
|
|
||
| When working with documents, it's common to need to find a table that contains a specific bookmark. This can become complex when dealing with nested tables, as a bookmark could be situated within multiple layers of tables. This KB article outlines methods to find either the innermost or outermost table containing a given bookmark, catering to scenarios involving nested tables. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"common to need to find" >> "a common requirement to find"
| type: how-to | ||
| page_title: How to Retrieve a Table by Bookmark in RadWordsProcessing | ||
| slug: radwordsprocessing-find-table-by-bookmark | ||
| tags: radwordsprocessing, document processing, bookmarks, table, nested tables |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe it is better to use separate words as tags for better SEO
|
|
||
| ## Solution | ||
|
|
||
| To find a table containing a specific bookmark, especially in documents with nested tables, you can use the following two methods: `GetInnermostTableContainingBookmark` and `GetOutermostTableContainingBookmark`. These methods help in identifying either the innermost or outermost table that contains the bookmark, depending on the nesting level of tables in the document. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"following two methods with custom implementation"
| Table innermostTable = GetInnermostTableContainingBookmark(bookmark); | ||
| Table outermostTable = GetOutermostTableContainingBookmark(bookmark); | ||
| ``` | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it is good to have one piece of code that lists all the steps before the snippet.
No description provided.