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!
PDFViewer - open PDF with bookmarks
Re: PDFViewer - open PDF with bookmarks
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;
}