You are here

public function PHPExcel_Worksheet::freezePaneByColumnAndRow in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 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

PHPExcel_Worksheet

Throws

PHPExcel_Exception

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);
}