You are here

private function PHPExcel_Reader_Excel5::_parseRichText in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php \PHPExcel_Reader_Excel5::_parseRichText()
2 calls to PHPExcel_Reader_Excel5::_parseRichText()
PHPExcel_Reader_Excel5::load in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Loads PHPExcel from file * *
PHPExcel_Reader_Excel5::_readNote in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* The NOTE record specifies a comment associated with a particular cell. In Excel 95 (BIFF7) and earlier versions, * this record stores a note (cell note). This feature was significantly enhanced in Excel 97.

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php, line 7080

Class

PHPExcel_Reader_Excel5
PHPExcel_Reader_Excel5

Code

private function _parseRichText($is = '') {
  $value = new PHPExcel_RichText();
  $value
    ->createText($is);
  return $value;
}