Package com.lowagie.text.pdf.collection

Examples of com.lowagie.text.pdf.collection.PdfCollection


     * a portable collection with all the embedded and
     * attached files as entries.
     * @param initialView can be PdfName.D, PdfName.T or PdfName.H
     */
    public void makePackage( PdfName initialView ) {
      PdfCollection collection = new PdfCollection(0);
      collection.put(PdfName.VIEW, initialView);
      stamper.makePackage( collection );
    }
View Full Code Here


     * a portable collection with all the embedded and
     * attached files as entries.
     * @param initialView can be PdfName.D, PdfName.T or PdfName.H
     */
    public void makePackage( PdfName initialView ) {
      PdfCollection collection = new PdfCollection(0);
      collection.put(PdfName.VIEW, initialView);
      stamper.makePackage( collection );
    }
View Full Code Here

     * a portable collection with all the embedded and
     * attached files as entries.
     * @param initialView can be PdfName.D, PdfName.T or PdfName.H
     */
    public void makePackage( PdfName initialView ) {
      PdfCollection collection = new PdfCollection(0);
      collection.put(PdfName.VIEW, initialView);
      stamper.makePackage( collection );
    }
View Full Code Here

     * a portable collection with all the embedded and
     * attached files as entries.
     * @param initialView can be PdfName.D, PdfName.T or PdfName.H
     */
    public void makePackage( PdfName initialView ) {
      PdfCollection collection = new PdfCollection(0);
      collection.put(PdfName.VIEW, initialView);
      stamper.makePackage( collection );
    }
View Full Code Here

TOP

Related Classes of com.lowagie.text.pdf.collection.PdfCollection

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.