Lines Matching refs:xCell

204 		XCell xCell = xSpreadsheet.getCellByPosition(column, row);  in setValueToCell()  local
205 xCell.setValue(value); in setValueToCell()
217 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in setTextToCell() local
218 XText xText = (XText) UnoRuntime.queryInterface(XText.class, xCell); in setTextToCell()
228 public static void setTextToCell(XCell xCell, String text) throws Exception { in setTextToCell() argument
229 XText xText = (XText) UnoRuntime.queryInterface(XText.class, xCell); in setTextToCell()
242 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in setFormulaToCell() local
243 xCell.setFormula(formula); in setFormulaToCell()
255 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in getValueFromCell() local
256 double cellValue = xCell.getValue(); in getValueFromCell()
271 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in getTextFromCell() local
272 XText xText = (XText) UnoRuntime.queryInterface(XText.class, xCell); in getTextFromCell()
286 XCell xCell = xSpreadsheet.getCellByPosition(column, row); in getFormulaFromCell() local
287 String cellFormula = xCell.getFormula(); in getFormulaFromCell()
305 XCell xCell = null; in setValueToCellRange() local
308 xCell = xCellRange.getCellByPosition(j, i); in setValueToCellRange()
309 xCell.setValue(values[i][j]); in setValueToCellRange()
316 XCell xCell = null; in setValueToCellRange() local
319 xCell = xCellRange.getCellByPosition(j, i); in setValueToCellRange()
320 xCell.setValue(values[i][j]); in setValueToCellRange()
338 XCell xCell = null; in setTextToCellRange() local
342 xCell = xCellRange.getCellByPosition(j, i); in setTextToCellRange()
343 xText = (XText) UnoRuntime.queryInterface(XText.class, xCell); in setTextToCellRange()
351 XCell xCell = null; in setTextToCellRange() local
355 xCell = xCellRange.getCellByPosition(j, i); in setTextToCellRange()
356 xText = (XText) UnoRuntime.queryInterface(XText.class, xCell); in setTextToCellRange()
374 XCell xCell = null; in getValueFromCellRange() local
379 xCell = xCellRange.getCellByPosition(j, i); in getValueFromCellRange()
380 cellValues[i][j] = xCell.getValue(); in getValueFromCellRange()
399 XCell xCell = null; in getTextFromCellRange() local
405 xCell = xCellRange.getCellByPosition(j, i); in getTextFromCellRange()
406 xText = (XText) UnoRuntime.queryInterface(XText.class, xCell); in getTextFromCellRange()
497 public static void setCellProperties(XCell xCell, String propName, Object value) throws Exception { in setCellProperties() argument
499 setProperties(xCell, propName, value); in setCellProperties()
509 public static Object getCellProperties(XCell xCell, String propName) throws Exception { in getCellProperties() argument
510 return getProperties(xCell, propName); in getCellProperties()