You are here

public function PHPExcel_Worksheet::setShowGridlines in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php \PHPExcel_Worksheet::setShowGridlines()

Set show gridlines

Parameters

boolean $pValue Show gridlines (true/false):

Return value

PHPExcel_Worksheet

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php, line 2135

Class

PHPExcel_Worksheet
PHPExcel_Worksheet

Code

public function setShowGridlines($pValue = false) {
  $this->_showGridlines = $pValue;
  return $this;
}