Example usage for org.apache.poi.xssf.usermodel XSSFSheet getLeftCol

List of usage examples for org.apache.poi.xssf.usermodel XSSFSheet getLeftCol

Introduction

In this page you can find the example usage for org.apache.poi.xssf.usermodel XSSFSheet getLeftCol.

Prototype

@Override
    public short getLeftCol() 

Source Link

Usage

From source file:org.keyboardplaying.xtt.xlsx.XlsxNormalizerTest.java

License:Apache License

private void controlSheet(XSSFWorkbook workbook, String range, int sheetIndex) {
    XSSFSheet sheet = workbook.getSheetAt(sheetIndex);
    if (sheet.getPaneInformation() == null) {
        // Doesn't work with panes
        assertEquals(new CellAddress(range), sheet.getActiveCell());
    }//www.java2 s.  c  o  m
    assertEquals(0, sheet.getTopRow());
    assertEquals(0, sheet.getLeftCol());
    assertFalse(sheet.isDisplayGridlines());
    assertFalse(sheet.isSelected());
}