Package org.pdfbox.pdmodel.interactive.viewerpreferences

Examples of org.pdfbox.pdmodel.interactive.viewerpreferences.PDViewerPreferences


     *
     * @return The document's viewer preferences.
     */
    public PDViewerPreferences getViewerPreferences()
    {
        PDViewerPreferences retval = null;
        COSDictionary dict = (COSDictionary)root.getDictionaryObject( "ViewerPreferences" );
        if( dict != null )
        {
            retval = new PDViewerPreferences( dict );
        }
       
        return retval;
    }
View Full Code Here

TOP

Related Classes of org.pdfbox.pdmodel.interactive.viewerpreferences.PDViewerPreferences

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.