You are here

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

Set comments array for the entire sheet.

*

Parameters

array of PHPExcel_Comment:

Return value

PHPExcel_Worksheet

File

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

Class

PHPExcel_Worksheet
PHPExcel_Worksheet

Code

public function setComments($pValue = array()) {
  $this->_comments = $pValue;
  return $this;
}