티스토리 뷰

CellStyle style= rstWb.createCellStyle();
style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);        //세로 가운데 정렬


- CellStyle.class -
  public static final short VERTICAL_TOP = 0;
  public static final short VERTICAL_CENTER = 1;
  public static final short VERTICAL_BOTTOM = 2;
  public static final short VERTICAL_JUSTIFY = 3;
댓글