Create a schema for the rank of the given columns.
1 excel.Sheet.groupColumn
<excel.Sheet.groupColumn
from='from'
to='to'
>
<sh /> +
</excel.Sheet.groupColumn>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Afrom | integer | Start point from where you begin of grouping columns. | |||
Ato | integer | Final point from where you end of grouping columns. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Esh | Sheet | The sheet where the columns are placed. |
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.groupColumn from="1" to="5"> <sheet_1/> </excel.Sheet.groupColumn> <excel.Workbook.write> <wb/> <file name="test.xls" type="absolute"/> </excel.Workbook.write> </body> </xsql-script>