Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 311 Bytes

freeze.md

File metadata and controls

15 lines (10 loc) · 311 Bytes

Freeze rows

If you want to freeze a cell, row or column, use:

// Freeze first row
$sheet->freezeFirstRow();

// Freeze the first column
$sheet->freezeFirstColumn();

// Freeze the first row and column
$sheet->freezeFirstRowAndColumn();

// Set freeze
$sheet->setFreeze('A2');