Examples of AutoText


Examples of ar.com.fdvs.dj.domain.AutoText

   * @param width2  If autotext is of the type AUTOTEXT_PAGE_X_OF_Y or AUTOTEXT_PAGE_X_SLASH_Y, this defines the width given to the "total page" variable
   * @return
   */
  public DynamicReportBuilder addAutoText(byte type, byte position, byte alignment,byte pattern, int width, int width2) {
    HorizontalBandAlignment alignment_ = HorizontalBandAlignment.buildAligment(alignment);
    AutoText text = new AutoText(type,position,alignment_,pattern,width,width2);
    addAutoText(text);

    return this;
  }
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.