Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 28 package net.sf.jasperreports.engine; 29 30 38 public interface JRAlignment extends JRStyleContainer 39 { 40 41 44 public static final byte HORIZONTAL_ALIGN_LEFT = 1; 45 public static final byte HORIZONTAL_ALIGN_CENTER = 2; 46 public static final byte HORIZONTAL_ALIGN_RIGHT = 3; 47 public static final byte HORIZONTAL_ALIGN_JUSTIFIED = 4; 48 49 52 public static final byte VERTICAL_ALIGN_TOP = 1; 53 public static final byte VERTICAL_ALIGN_MIDDLE = 2; 54 public static final byte VERTICAL_ALIGN_BOTTOM = 3; 55 public static final byte VERTICAL_ALIGN_JUSTIFIED = 4; 56 57 58 62 public byte getHorizontalAlignment(); 63 64 public Byte getOwnHorizontalAlignment(); 65 66 70 public void setHorizontalAlignment(byte horizontalAlignment); 71 72 public void setHorizontalAlignment(Byte horizontalAlignment); 73 74 78 public byte getVerticalAlignment(); 79 80 public Byte getOwnVerticalAlignment(); 81 82 86 public void setVerticalAlignment(byte verticalAlignment); 87 88 public void setVerticalAlignment(Byte verticalAlignment); 89 90 } 91
| Popular Tags
|