You are here

public function PHPExcel_Style_Protection::getHidden in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php \PHPExcel_Style_Protection::getHidden()

Get hidden

Return value

string

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php, line 168

Class

PHPExcel_Style_Protection
PHPExcel_Style_Protection

Code

public function getHidden() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getHidden();
  }
  return $this->_hidden;
}