public function PHPExcel_Writer_HTML::setGenerateSheetNavigationBlock in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php \PHPExcel_Writer_HTML::setGenerateSheetNavigationBlock()
* Set sheet index * *
Parameters
boolean $pValue Flag indicating whether the sheet navigation block should be generated or not: * @return PHPExcel_Writer_HTML
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ HTML.php, line 285
Class
- PHPExcel_Writer_HTML
- PHPExcel_Writer_HTML
Code
public function setGenerateSheetNavigationBlock($pValue = true) {
$this->_generateSheetNavigationBlock = (bool) $pValue;
return $this;
}