public function PHPExcel_Worksheet::freezePaneByColumnAndRow in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::freezePaneByColumnAndRow()
Freeze Pane by using numeric cell coordinates
Parameters
int $pColumn Numeric column coordinate of the cell:
int $pRow Numeric row coordinate of the cell:
Return value
Throws
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet.php, line 1990
Class
- PHPExcel_Worksheet
- PHPExcel_Worksheet
Code
public function freezePaneByColumnAndRow($pColumn = 0, $pRow = 1) {
return $this
->freezePane(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow);
}