Some test text!
Xamarin / Guides
Apryse SDK allows you to create a maintain a list of user defined bookmarks.
The PTBookmarkViewController class shows a list of user-defined bookmarks that can be used to navigate through the document. The user-defined bookmarks are Apryse specific features that may not be shown in other PDF viewer apps. If you want to manage PDF bookmarks so that they can be processed in other standard PDF viewers, see the outline view controller guide .

The user bookmarks control is part of the Tools library, so make sure you have added the Tools library to your project .
To create a new bookmark view controller instance and display it from another view controller, supply a PTPDFViewCtrl instance to the PTBookmarkViewController designated initializer:
var bookmarkViewController = new pdftron.PDF.Controls.PTBookmarkViewController (mPdfViewCtrl);
bookmarkViewController.BookmarkViewControllerBookmarkSelected += (sender, e) => {
// perform custom action
this.DismissViewController (true, null);
};
bookmarkViewController.BookmarkViewControllerDidCancel += (object sender, EventArgs e) => {
this.DismissViewController (true, null);
};
var navigationController = new UINavigationController (bookmarkViewController);
if (UserInterfaceIdiomIsPad)
{
navigationController.ModalPresentationStyle = UIModalPresentationStyle.Popover;
navigationController.PopoverPresentationController.BarButtonItem = bookmarksButton;
}
this.PresentViewController (navigationController, true, null);PTBookmarkViewController's
PopoverPresentationController
with either:
SourceRect AND SourceViewYou can set a delegate to be notified by the bookmark view controller when bookmarks are selected with the PTBookmarkViewControllerDelegate protocol. (See the CompleteReader example for usage of a PTBookmarkViewController.
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales