This function is used to store the workbook with which you are working in a file to see the results.
1 excel.Workbook.write
<excel.Workbook.write>
<wb /> +
<file /> +
</excel.Workbook.write>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Ewb | Workbook | Work which you want to store in the file. | |||
Efile | File | File where you want to store the workbook. |
Example
Copy
<xsql-script> <body> <set name='wb'> <excel.Workbook /> </set> <excel.Workbook.write> <wb/> <file name="test.xls" type="absolute"/> </excel.Workbook.write> </body> </xsql-script>