Lines Matching refs:cells
165 XCell[] cells = new XCell[cellNum]; in testCharUnderline() local
174 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharUnderline()
177 cells[0].setValue(inputColor); in testCharUnderline()
178 SCUtil.setTextToCell(cells[1], inputType[0]); in testCharUnderline()
179 cells[2].setFormula("=\"ABC\""); in testCharUnderline()
180 cells[3].setValue(-0.90000001); in testCharUnderline()
183 SCUtil.setCellProperties(cells[i], inputType[0], inputStyle); in testCharUnderline()
185 SCUtil.setCellProperties(cells[i], inputType[1], true); in testCharUnderline()
186 SCUtil.setCellProperties(cells[i], inputType[2], inputColor); in testCharUnderline()
195 cells[i] = sheet.getCellByPosition(cInfo.getCol(), cInfo.getRow() + i); in testCharUnderline()
196 styleResults[i] = ((Short) SCUtil.getCellProperties(cells[i], inputType[0])).shortValue(); in testCharUnderline()
198 hasColor[i] = ((Boolean) SCUtil.getCellProperties(cells[i], inputType[1])).booleanValue(); in testCharUnderline()
199 colorResults[i] = ((Integer) SCUtil.getCellProperties(cells[i], inputType[2])).intValue(); in testCharUnderline()