PdfTranslatorBookmarkTree Property |
Gets or sets the PDF bookmark tree that will be used with this document. Default value is null (no tree).
Namespace:
Atalasoft.Ocr
Assembly:
Atalasoft.dotImage.Ocr (in Atalasoft.dotImage.Ocr.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public PdfBookmarkTree BookmarkTree { get; set; }
Public Property BookmarkTree As PdfBookmarkTree
Get
Set
Property Value
Type:
PdfBookmarkTreeExamples encoder.BookmarkTree = new PdfBookmarkTree();
PdfGotoViewAction action = PdfGotoViewAction.FitPage();
action.Page = new PdfIndexedPageReference(0);
PdfBookmark bookmark = new PdfBookmark("Introduction", action);
encoder.BookmarkTree.Bookmarks.Add(bookmark);
See Also