BookmarkGetChildren Method

Apitron PDF Kit help
Apitron.PDF.Kit library for .NET
Gets the children bookmarks.

Namespace:  Apitron.PDF.Kit.Interactive.Navigation.DocumentLevel
Assembly:  Apitron.PDF.Kit (in Apitron.PDF.Kit.dll) Version: 2.0.37.0 (2.0.37.0)
Syntax

public IList<Bookmark> GetChildren()

Return Value

Type: IListBookmark
The list of child bookmarks.
Examples

C#
FixedDocument document = new FixedDocument();
Bookmark bookmark = document.Bookmarks;

// Get list of childs
IList <Bookmark> bookmarks = bookmark.GetChildren();
See Also

Reference