Skip to content
Julian Halliwell edited this page Apr 8, 2017 · 7 revisions

Sets the value for a cell. If the cell doesn't exist it will be created.

setCellValue( workbook, value, row, column )

Required arguments

  • workbook spreadsheet object
  • value any: value to set
  • row numeric
  • column numeric

Example

spreadsheet = New spreadsheet();
workbook = spreadsheet.new();
spreadsheet.setCellValue( workbook, "test", 1, 1 );

Clone this wiki locally