Spreadsheet Freeze
This section covers the methods to handle with the spreadsheet freeze.Documentation
Methods
The following methods are available to interact with the spreadsheet freeze programmatically.Method | Description |
---|---|
getFreezeRows | Get the current value of the freezeRows property.
getFreezeRows(): Promise<number>
GET /api/:guid/freeze/rows
|
setFreezeRows | Set the value of the freezeRows property.
setFreezeRows(row: number): Promise<void>
@param row - new value. POST /api/:guid/freeze/rows
|
getFreezeColumns | Get the current value of the freezeColumns property.
getFreezeColumns(): Promise<number>
GET /api/:guid/freeze/columns
|
setFreezeColumns | Set the value of the freezeColumns property.
setFreezeColumns(column: number): Promise<void>
@param column - new value. POST /api/:guid/freeze/columns
|