Get the height of the row.

1 excel.Row.getHeight

<excel.Row.getHeight>
    <rw /> +
</excel.Row.getHeight>
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>
		
		<set name="row_1">
		    <excel.Sheet.createRow row="5">
		        <sheet_1/>
		    </excel.Sheet.createRow>
		</set>
		
		<excel.Row.getHeight>
		    <row_1/>
		</excel.Row.getHeight>
		
		<excel.Workbook.write>
		    <wb/>
		    <file name="test.xls" type="absolute"/>
		</excel.Workbook.write>
	</body>
</xsql-script>