-
-
Notifications
You must be signed in to change notification settings - Fork 39
createSheet
Julian Halliwell edited this page Aug 12, 2016
·
5 revisions
Creates a new sheet within a spreadsheet workbook.
createSheet( workbook[, sheetName [, overwrite ] ] )
##Required arguments
-
workbookspreadsheet object
##Optional arguments
-
sheetNamestring: the name of the new sheet to create. If omitted a unique name is generated. -
overwriteboolean default=false: whether to replace an existing sheet with the same name.
##Example
spreadsheet = New spreadsheet();
workbook = spreadsheet.new();
spreadsheet.createSheet( workbook,"New" );