You are here

public function PHPExcel_Worksheet::cellExistsByColumnAndRow 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::cellExistsByColumnAndRow()

Cell at a specific coordinate by using numeric cell coordinates exists?

Parameters

string $pColumn Numeric column coordinate of the cell:

string $pRow Numeric row coordinate of the cell:

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php, line 1304

Class

PHPExcel_Worksheet
PHPExcel_Worksheet

Code

public function cellExistsByColumnAndRow($pColumn = 0, $pRow = 1) {
  return $this
    ->cellExists(PHPExcel_Cell::stringFromColumnIndex($pColumn) . $pRow);
}