as the title explains, i want to fetch all the bookmarks in my word document, and then push them to an array. The bookmarks must be sorted by their location in document not by name,
ex. here's a list of bookmarks in a document,
[bm_s] (header)
[bm_h] (title)
[bm_a] (footer)
i want the bookmarks to keep their order so that the array will look like as following,
array {bm_s, bm_h, bm_a, }
ex. how it should not look like below,
array {bm_a, bm_h, bm_s, }
basically, i got the fetching of all the bookmarks from document working, but when it comes to sorting them as i want, is a different story. I get all the bookmarks in random order when fetching and pushing to the array.