public function PHPExcel_Comment::setVisible in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php \PHPExcel_Comment::setVisible()
Set comment default visibility
Parameters
boolean $value:
Return value
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Comment.php, line 250
Class
- PHPExcel_Comment
- PHPExcel_Comment
Code
public function setVisible($value = false) {
$this->_visible = $value;
return $this;
}