Create a new row in the wished sheet.
1 excel.Sheet.createRow
<excel.Sheet.createRow row='row'>
<sh /> +
</excel.Sheet.createRow>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Arow | integer | Number of rows. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Esh | Sheet | Sheet in which you want to add the row. |
Returns | |
---|---|
Type | Description |
Col | The row which was just created. |
Example
Copy
<xsql-script> <body> <set name='wb'> <excel.Workbook /> </set> <set name='sheet_1'> <excel.Workbook.createSheet name='sheet1'> <wb /> </excel.Workbook.createSheet> </set> <set name='cell_r1'> <excel.Sheet.createRow row='15'> <sheet_1/> </excel.Sheet.createRow> </set> </body> </xsql-script>