freezeCols()
Description
Fixes ("freezes") columns
Usage
freezeCols(cell?: string): void;
Parameters
cell
- (optional) the id of the cell used to define the id of a column. If the cell id isn't passed, the currently selected cell will be used
Example
spreadsheet.freezeCols("B2"); // the columns up to the "B" column will be fixed
spreadsheet.freezeCols("sheet2!B2"); // the columns up to the "B" column in "sheet2" will be fixed
Related articles: Work with Spreadsheet
Related API: unfreezeCols()
Related sample: Spreadsheet. Freezing columns and rows via API
Change log: Added in v5.2