> For the complete documentation index, see [llms.txt](https://xlswriter-docs.viest.me/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xlswriter-docs.viest.me/english/cell/freeze-panes.md).

# Freeze panes

## **Function Prototype**

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

### **int $row**

> Line number

### **int $column**

> column number

## example

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