Examples of JRLineBox


Examples of net.sf.jasperreports.engine.JRLineBox

   */
 
  @Override
  public double getFieldHeigth(){
    double      target = normalJavaFont.getMaxCharBounds(frontRenderContext).getHeight();
    JRLineBox box = normalStyle.getLineBox();
    target += box.getTopPadding();
    target += box.getBottomPadding();
    target += box.getTopPen().getLineWidth();
    return (int) Math.round(target);
  }
View Full Code Here

Examples of net.sf.jasperreports.engine.JRLineBox

   */
 
  @Override
  public double getFieldLenght(String line){
    double    target = getStringLength(line);
    JRLineBox  box = normalStyle.getLineBox();
    target += box.getLeftPadding();
    target += box.getRightPadding();
    target += box.getLeftPen().getLineWidth();
    target += 1;
    return target;
  }
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.