public function PHPExcel_Reader_Abstract::setReadDataOnly in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php \PHPExcel_Reader_Abstract::setReadDataOnly()
* Set read data only * Set to true, to advise the Reader only to read data values for cells, and to ignore any formatting information. * Set to false (the default) to advise the Reader to read both data and formatting for cells. * *
Parameters
boolean $pValue: * * @return PHPExcel_Reader_IReader
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Reader/ Abstract.php, line 93
Class
- PHPExcel_Reader_Abstract
- PHPExcel_Reader_Abstract
Code
public function setReadDataOnly($pValue = FALSE) {
$this->_readDataOnly = $pValue;
return $this;
}