[]
List of all bookmarks of the document.
public Bookmarks Bookmarks { get; }
Use the Bookmarks property to get a list of all bookmarks in the document.
The code below loads all bookmarks in a tree.
private void LoadBookmarks()
{
_tree.Nodes.Clear();
foreach (Bookmark bookmark in Item.Bookmarks)
{
TreeNode node = _tree.Nodes.Add(bookmark.Name);
node.Tag = bookmark;
}
}