Returns the indicated row of the excel sheet.
1 excel.Sheet.getRow
<excel.Sheet.getRow row='row'>
<sheet /> +
</excel.Sheet.getRow>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Arow | int | The number of row. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Esheet | Sheet | The excel sheet from which you want to obtain the row of cells. |
Returns | |
---|---|
Type | Description |
Cell |
Example
Returns the indicated row of the excel sheet.
Copy
<xsql-script name='sample_excel_Sheet_getRow'> <body> <set name='wb'> <excel.Workbook> <file name='test_in.xls' type='absolute'/> </excel.Workbook> </set> <set name='sheet'> <excel.Workbook.getSheetAt index='0'> <wb/> </excel.Workbook.getSheetAt> </set> <set name='row'> <excel.Sheet.getRow row='0'> <sheet /> </excel.Sheet.getRow> </set> <return><row/></return> </body> </xsql-script>