Opening an PDF portfolio in PDFViewCtrl

Q:
- Could you help me on opening an PDF portfolio in pdfviewctrl?

- Does pdfviewctrl has any feature like 'Comments' tab as in Acrobat
pro?, if not, how to implement in pdfviewctrl ?

- How do i customise Navigation pane which opens with pdfviewctrl?
--------------------------

A: You could use the code along the lines from
http://www.pdftron.com/pdfnet/samplecode.html#PDFPackage.
You could need to provide some GUI to present a list of embedded files
the user. When a given file is selected you would extract the embedded
file to a memory buffer, open a new PDFDoc from a memory buffer and
possibly create a new PDFViewCtrl associated with the new document.

At the moment, PDFViewCtrl does not include a built-in comments tab.
You could need to use pdftron.PDF.Annots or document level API to
extract the data to fill-in your UI.

➢ 4) How do i customise Navigation pane which opens with pdfviewctrl?

There is no very large number of options for customization of the
Navigation panel, however you can replace the built-in panel with your
own implementation. This is shown in C# PDFView sample (e.g.
PDFViewForm.cs) in code snippets surrounded with ‘CUSTOM_NAV’.