Examples of addAutoText()


Examples of ar.com.fdvs.dj.domain.builders.FastReportBuilder.addAutoText()

    name2.setPrintWhenExpression(ExpressionHelper.printInFirstPage());
    AutoText street = new AutoText("256, ZK Direct RIA Street ", AutoText.POSITION_HEADER, HorizontalBandAlignment.LEFT);
    street.setPrintWhenExpression(ExpressionHelper.printInFirstPage());
    AutoText city = new AutoText("ZKoss City", AutoText.POSITION_HEADER, HorizontalBandAlignment.LEFT);
    city.setPrintWhenExpression(ExpressionHelper.printInFirstPage());
    rb.addAutoText(name1).addAutoText(name2).addAutoText(street).addAutoText(city);
    // Footer
    AutoText footerText = new AutoText("Help to prevent the global warming by writing cool software.", AutoText.POSITION_FOOTER, HorizontalBandAlignment.CENTER);
    footerText.setStyle(getDjReportStyles().getFooterStyle());
    rb.addAutoText(footerText);
View Full Code Here

Examples of ar.com.fdvs.dj.domain.builders.FastReportBuilder.addAutoText()

    city.setPrintWhenExpression(ExpressionHelper.printInFirstPage());
    rb.addAutoText(name1).addAutoText(name2).addAutoText(street).addAutoText(city);
    // Footer
    AutoText footerText = new AutoText("Help to prevent the global warming by writing cool software.", AutoText.POSITION_FOOTER, HorizontalBandAlignment.CENTER);
    footerText.setStyle(getDjReportStyles().getFooterStyle());
    rb.addAutoText(footerText);

    DynamicReport dr = new DynamicReport();
    dr = rb.build();

    return dr;
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.