Examples of HSSFFooter


Examples of org.apache.poi.hssf.usermodel.HSSFFooter

   
    /**
     * Set text to be printed at the bottom of every page
     */
    void setFooter(String left, String middle, String right) {
        HSSFFooter footer = _sheet.getFooter();
        footer.setLeft(left);
        footer.setCenter(middle);
        footer.setRight(right);
    }
View Full Code Here

Examples of org.apache.poi.hssf.usermodel.HSSFFooter

        filename = filename + "/EmbeddedChartHeaderTest.xls";
        FileInputStream fin = new FileInputStream( filename );
        HSSFWorkbook wb = new HSSFWorkbook( fin );
        fin.close();
        HSSFSheet s = wb.getSheetAt( 0 );
  HSSFFooter foot = s.getFooter();

  assertEquals("Bottom Left", foot.getLeft());
  assertEquals("Bottom Center", foot.getCenter());
  assertEquals("Bottom Right", foot.getRight());
    }
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.