SpreadsheetAddColumn
Adds columns to a spreadsheet object.
Method Signature
SpreadsheetAddColumn(spreadsheetObj=[any], data=[any], column=[any], row=[any], insert=[any], datatype=[any])Arguments
spreadsheetObj
ANY
true
The spreadsheet object.
data
ARRAY
true
An array of data to add to the column.
column
NUMERIC
false
The column number where to insert the data (1-based). If not specified, adds to the end.
row
NUMERIC
false
The row number where to start inserting the data (1-based). Default is 1.
1
insert
BOOLEAN
false
Whether to insert a new column or overwrite existing column. Default is false.
false
datatype
STRING
false
The data type to apply to the cells (not implemented in this version).
Examples
Add a column to a spreadsheet:
// Add a column with data
var spreadsheet = SpreadsheetNew();
SpreadsheetAddColumn( spreadsheet, "ID", [ 1, 2, 3 ] );Add multiple columns:
// Build spreadsheet column by column
var spreadsheet = SpreadsheetNew();
SpreadsheetAddColumn( spreadsheet, "Name", [ "John", "Jane", "Bob" ] );
SpreadsheetAddColumn( spreadsheet, "Age", [ 30, 28, 35 ] );Related
SpreadsheetDeleteColumn() - Delete a column
SpreadsheetSetColumnWidth() - Set column width
SpreadsheetAddRow() - Add a row
Column Operations Guide - Working with columns
Last updated
Was this helpful?
