public function PHPExcel_Worksheet::setSelectedCellByColumnAndRow in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::setSelectedCellByColumnAndRow()
Selected cell 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 2370
Class
- PHPExcel_Worksheet
- PHPExcel_Worksheet
Code
public function setSelectedCellByColumnAndRow($pColumn = 0, $pRow = 1) {
return $this
->setSelectedCells(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow);
}