Package org.jpedal.objects.raw

Examples of org.jpedal.objects.raw.OutlineObject


                                }
                               
                                if(bookmarkPage!=null){ //and goto named Dest if present

                                    //read the object
                                    PdfObject namedDest=new OutlineObject((String)bookmarkPage);
                                    decode_pdf.getIO().readObject(namedDest);

                                    //and generic open Dest code
                                    decode_pdf.getFormRenderer().getActionHandler().gotoDest(namedDest, ActionHandler.MOUSECLICKED, PdfDictionary.Dest );
                                }
View Full Code Here


                bookmarkPage=decode_pdf.getIO().convertNameToRef(bookmark);

                if(bookmarkPage!=null){

                    //read the object
                    PdfObject namedDest=new OutlineObject((String)bookmarkPage);
                    decode_pdf.getIO().readObject(namedDest);

                    //still needed to init viewer
                    if(fileCanBeOpened)
                        currentCommands.processPage();
View Full Code Here

TOP

Related Classes of org.jpedal.objects.raw.OutlineObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.