Click or drag to resize

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; }

Property Value

Type: PdfBookmarkTree
Examples
 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