Examples of PdfOutlineItem


Examples of org.axsl.pdf.PdfOutlineItem

        boolean bold = false;
        if (area.traitFontWeight().getNumericWeight()
                >= Font.Weight.BOLD.getNumericWeight()) {
            bold = true;
        }
        PdfOutlineItem pdfOutline = null;
        pdfOutline = parent.createPdfOutlineItem(area.getTitleText(),
                area.getDestination(), color, italic, bold);
        // Recursively handle child bookmarks
        for (int i = 0; i < area.getChildren().size(); i++) {
            final Bookmark child = area.getChildren().get(i);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.