Freeze Panes
Function Prototype
freezePanes(int $row, int $column): selfint $row
int $column
example
freezePanes(1, 0); // freeze the first line
freezePanes(0, 1); // Freeze the first column
freezePanes(1, 1); // Freeze the first row and first columnLast updated