inserts an empty column to the left of the specified one
columnId | number|array | the column id(s) |
$$("ssheet").insertColumn(3);
If the column ID isn't specified, a new column will be inserted before the selected one.The method can accept an array of ids as a parameter:
$$("ssheet").insertColumn([5, 7]) // inserts columns 5, 6, 7