This function returns the name of a sheet.

1 excel.Workbook.getSheetName

<excel.Workbook.getSheetName index='index'>
    <wb /> +
</excel.Workbook.getSheetName>
Example

Get the name of the second sheet of the book.

Copy
<xsql-script>
	<body>
		<set name='wb'>
		    <excel.Workbook />
		</set>
		
		<excel.Workbook.createSheet name='sheet1'>
		    <wb />
		</excel.Workbook.createSheet>
		
		<excel.Workbook.createSheet name='sheet2'>
		    <wb />
		</excel.Workbook.createSheet>
		
		<excel.Workbook.createSheet name='sheet3'>
		    <wb />
		</excel.Workbook.createSheet>
		
		<println>
		    <excel.Workbook.getSheetName index='1'>
		        <wb />
		    </excel.Workbook.getSheetName>
		</println>
	</body>
</xsql-script>