You are here

public function PHPExcel_Comment::setText in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php \PHPExcel_Comment::setText()

Set Rich text comment

Parameters

PHPExcel_RichText $pValue:

Return value

PHPExcel_Comment

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php, line 150

Class

PHPExcel_Comment
PHPExcel_Comment

Code

public function setText(PHPExcel_RichText $pValue) {
  $this->_text = $pValue;
  return $this;
}