Create a division (freezepane). Any freezepane or existing division is overwritten.

1 excel.Sheet.createSplitPane

<excel.Sheet.createSplitPane
    x='x'
    y='y'
    top-row='top-row'
    leftmost-col='leftmost-col'
    active-pane='active-pane'
/>
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>
		
		<!-- Divide sheet -->
		<excel.Sheet.createSplitPane x="2000" y="2000" top-row="0" leftmost-col="0" active-pane="LOWER_LEFT">
			<sheet_1/>
		</excel.Sheet.createSplitPane>
		
		<excel.Workbook.write>
		    <wb/>
		    <file name="test.xls" type="absolute"/>
		</excel.Workbook.write>
	</body>
</xsql-script>