芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/public_html/cepali/lib/phpexcel/PHPExcel/Worksheet/CellIterator.php
subject); } /** * Get loop only existing cells * * @return boolean */ public function getIterateOnlyExistingCells() { return $this->onlyExistingCells; } /** * Validate start/end values for "IterateOnlyExistingCells" mode, and adjust if necessary * * @throws PHPExcel_Exception */ abstract protected function adjustForExistingOnlyRange(); /** * Set the iterator to loop only existing cells * * @param boolean $value * @throws PHPExcel_Exception */ public function setIterateOnlyExistingCells($value = true) { $this->onlyExistingCells = (boolean) $value; $this->adjustForExistingOnlyRange(); } }