You are here

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

Get comment for 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

PHPExcel_Comment

File

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

Class

PHPExcel_Worksheet
PHPExcel_Worksheet

Code

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