public function PHPExcel_Reader_Abstract::setLoadAllSheets 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::setLoadAllSheets()
* Set all sheets to load * Tells the Reader to load all worksheets from the workbook. * *
Return value
1 call to PHPExcel_Reader_Abstract::setLoadAllSheets()
- PHPExcel_Reader_Abstract::setLoadSheetsOnly in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Reader/ Abstract.php - * Set which sheets to load * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Reader/ Abstract.php, line 162
Class
- PHPExcel_Reader_Abstract
- PHPExcel_Reader_Abstract
Code
public function setLoadAllSheets() {
$this->_loadSheetsOnly = NULL;
return $this;
}