Get the value of the cell with the form.
1 excel.Cell.getCellNum
<excel.Cell.getCellNum>
<cl /> +
</excel.Cell.getCellNum>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Ecl | Cell | The cell to obtain. |
Returns | |
---|---|
Type | Description |
integer | Number of column where is the cell. |
Example
Copy
<xsql-script> <body> <set name='wb'> <excel.Workbook /> </set> <set name="sheet_1"> <excel.Workbook.createSheet name="Hoja 1"> <wb/> </excel.Workbook.createSheet> </set> <set name="cell_r2c2"> <excel.Sheet.createCell row="3" col="1"> <sheet_1/> </excel.Sheet.createCell> </set> <excel.Cell.setCellValue> <cell_r2c2/> <excel.Cell.getCellNum> <cell_r2c2/> </excel.Cell.getCellNum> </excel.Cell.setCellValue> <excel.Workbook.write> <wb/> <file name="test.xls" type="absolute"/> </excel.Workbook.write> </body> </xsql-script>