Lines Matching refs:xCell
64 unoidl.com.sun.star.table.XCell xCell = null; in doSampleFunction()
70 xCell = xSheet.getCellByPosition( 0, 0 ); in doSampleFunction()
72 xCell.setValue( 1234 ); in doSampleFunction()
75 double nDblValue = xCell.getValue() * 2; in doSampleFunction()
79 xCell = xSheet.getCellByPosition( 0, 2 ); in doSampleFunction()
81 xCell.setFormula( "=1/0" ); in doSampleFunction()
84 bool bValid = (xCell.getError() == 0); in doSampleFunction()
86 String aText = "The formula " + xCell.getFormula() + " is "; in doSampleFunction()
90 xCell = xSheet.getCellByPosition( 0, 3 ); in doSampleFunction()
92 (unoidl.com.sun.star.text.XText) xCell; in doSampleFunction()
99 xPropSet = (unoidl.com.sun.star.beans.XPropertySet) xCell; in doSampleFunction()