Package net.sf.jasperreports.engine.base

Examples of net.sf.jasperreports.engine.base.JRBasePrintLine


        }
        return image;
    }

    private JRPrintLine drawVerticalLine(int posX, int posY, int height) {
        line = new JRBasePrintLine(jasperPrint.getDefaultStyleProvider());
        line.setX(posX);
        line.setY(posY);
        line.setWidth(0);
        line.setHeight(height);
        return line;
View Full Code Here


        line.setHeight(height);
        return line;
    }
   
    private JRPrintLine drawHorizontalLine(int posX, int posY, int width) {
        line = new JRBasePrintLine(jasperPrint.getDefaultStyleProvider());
        line.setX(posX);
        line.setY(posY);
        line.setWidth(width);
        line.setHeight(0);
        return line;
View Full Code Here

        line.setHeight(0);
        return line;
    }
   
    private JRPrintElement drawHorizontalDottedLine(int posX, int posY, int width) {
        line = new JRBasePrintLine(jasperPrint.getDefaultStyleProvider());
        line.setX(posX);
        line.setY(posY);
        line.setWidth(width);
        line.setHeight(0);
        line.setPen(JRDesignLine.PEN_DOTTED);
View Full Code Here

            }
            posY = posYTemp;
           
            page.addElement(printNormalText("In�cio do Curso: ____/_____/________.", posX+346, posY+4, 181));
           
            JRPrintLine line = new JRBasePrintLine(jasperPrint.getDefaultStyleProvider());
            line.setX(posX+2);
            line.setY(convert(290)-40);
            line.setWidth(188);
            line.setHeight(0);
            page.addElement(line);
            page.addElement(printNormalText("Assinatura do Aluno / Respons�vel", posX+12, convert(290)-40, 169));

            page.addElement(printMiniText("Observa��es no verso.", posX+451, convert(290)-30, 90));
           
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.engine.base.JRBasePrintLine

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.