Page 1 of 1

PDFViewer - open PDF with bookmarks

Posted: Fri Feb 28, 2014 12:31 am
by smolenak
Hi everybody,

I'm just wondering how can I open PDF document with bookmarks option. Adobe Reader opens the document correctly (with bookmarks), but in iX by using PDFviewer component it doesn't.. How could I do it by scripting?
Other PDFViewer option tips are welcome also.

Thank You!

Re: PDFViewer - open PDF with bookmarks

Posted: Wed Apr 23, 2014 3:54 pm
by stuartm
When pressing the button, the bookmarks appear. One can improvise this script to a "screen opened", tag change, etc. There is no event that signals when the document is loaded though.

Code: Select all

void Button_Click(System.Object sender, System.EventArgs e)
{
    PDFViewer.ShowBookMarks = true;
}