SpreadsheetSetCellValue
Method Signature
SpreadsheetSetCellValue(spreadsheetObj=[any], value=[any], row=[any], column=[any])Arguments
Argument
Type
Required
Description
Default
Examples
// Write a value to a cell
var spreadsheet = SpreadsheetNew();
SpreadsheetSetCellValue( spreadsheet, 1, 1, "Hello" );
SpreadsheetSetCellValue( spreadsheet, 1, 2, 42 );
SpreadsheetSetCellValue( spreadsheet, 1, 3, true );Related
Last updated
Was this helpful?
