Indicates if the grids are showed or not.

1 excel.Sheet.setDisplayGridlines

<excel.Sheet.setDisplayGridlines show='show'>
    <sh /> +
</excel.Sheet.setDisplayGridlines>
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.setDisplayGridlines show="show">
		<sheet_1/>
		
		</excel.Sheet.setDisplayGridlines>
		
		<excel.Workbook.write>
		  <wb/>
		  <file name="test.xls" type="absolute"/>
		</excel.Workbook.write>
	</body>
</xsql-script>