You are here

public function PHPExcel_Reader_Abstract::setLoadAllSheets in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.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

PHPExcel_Reader_IReader

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;
}