Lines Matching refs:cells
166 XCell[] cells = new XCell[cellNum]; in testCharOverline() local
175 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharOverline()
178 cells[0].setValue(inputColor); in testCharOverline()
179 SCUtil.setTextToCell(cells[1], inputType[0]); in testCharOverline()
180 cells[2].setFormula("=10/0"); in testCharOverline()
181 cells[3].setValue(-0.0000001); in testCharOverline()
184 SCUtil.setCellProperties(cells[i], inputType[0], inputStyle); in testCharOverline()
186 SCUtil.setCellProperties(cells[i], inputType[1], true); in testCharOverline()
187 SCUtil.setCellProperties(cells[i], inputType[2], inputColor); in testCharOverline()
196 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharOverline()
197 styleResults[i] = ((Short) SCUtil.getCellProperties(cells[i], inputType[0])).shortValue(); in testCharOverline()
200 hasColor[i] = ((Boolean) SCUtil.getCellProperties(cells[i], inputType[1])).booleanValue(); in testCharOverline()
201 colorResults[i] = ((Integer) SCUtil.getCellProperties(cells[i], inputType[2])).intValue(); in testCharOverline()