public function PHPExcel_Worksheet::setPrintGridlines in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::setPrintGridlines()
Set print gridlines
Parameters
boolean $pValue Print gridlines (true/false):
Return value
File
- vendor/phpoffice/ phpexcel/ Classes/ PHPExcel/ Worksheet.php, line 2155 
Class
- PHPExcel_Worksheet
- PHPExcel_Worksheet
Code
public function setPrintGridlines($pValue = false) {
  $this->_printGridlines = $pValue;
  return $this;
}