-
-
Notifications
You must be signed in to change notification settings - Fork 42
setHeader
Julian Halliwell edited this page Apr 8, 2017
·
6 revisions
Adds a header to a spreadsheet which will display when printed. Text can be provided for the left, centre and right of the header.
setHeader( workbook [, leftHeader [, centerHeader [, rightHeader ] ] ] )
-
workbookspreadsheet object
-
leftHeaderstring: text to place on the left hand side of the header. -
centerHeaderstring: text to place in the centre of the header. -
rightHeaderstring: text to place on the right of the header.
spreadsheet = New spreadsheet();
workbook = spreadsheet.new();
spreadsheet.setHeader( workbook=workbook, centerHeader="ACME Ltd" );