You are here

function PHPExcel_Worksheet_Protection::setDeleteColumns in Loft Data Grids 7.2

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

Set DeleteColumns

Parameters

boolean $pValue:

Return value

PHPExcel_Worksheet_Protection

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php, line 383

Class

PHPExcel_Worksheet_Protection
PHPExcel_Worksheet_Protection

Code

function setDeleteColumns($pValue = false) {
  $this->_deleteColumns = $pValue;
  return $this;
}