1 excel.Sheet.setDisplayFormulas
<excel.Sheet.setDisplayFormulas show='show'>
<sh /> +
</excel.Sheet.setDisplayFormulas>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Ashow | boolean |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Esh | Sheet |
Example
Copy
<xsql-script> <body> <set name='wb'> <excel.Workbook /> </set> <set name="sheet_1"> <excel.Workbook.createSheet name="Sheet 1"> <wb/> </excel.Workbook.createSheet> </set> <excel.Sheet.setDisplayFormulas show="true"> <sheet_1/> </excel.Sheet.setDisplayFormulas> <excel.Workbook.write> <wb/> <file name="test.xls" type="absolute"/> </excel.Workbook.write> </body> </xsql-script>