public function PHPExcel_Worksheet::setShowRowColHeaders in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::setShowRowColHeaders()
Set show row and column headers
Parameters
boolean $pValue Show row and column headers (true/false):
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet.php, line 2175
Class
- PHPExcel_Worksheet
- PHPExcel_Worksheet
Code
public function setShowRowColHeaders($pValue = false) {
$this->_showRowColHeaders = $pValue;
return $this;
}