For the complete documentation index, see llms.txt. This page is also available as Markdown.

Freeze panes

Function Prototype

freezePanes(int $row, int $column): self

int $row

Line number

int $column

column number

example

freezePanes(1, 0); // freeze the first line
freezePanes(0, 1); // Freeze the first column
freezePanes(1, 1); // Freeze the first row and first column

Last updated