unfreezeCols()
Description
Unfreezes the fixed ("frozen") columns
Usage
unfreezeCols(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.unfreezeCols(); // fixed columns in the current sheet will be unfrozen
spreadsheet.unfreezeCols("sheet2!A1"); // fixed columns in "sheet2" will be unfrozen
Related articles: Work with Spreadsheet
Related API: freezeCols()
Related sample: Spreadsheet. Freezing columns and rows via API
Change log: Added in v5.2