public function PHPExcel_Style_Font::getStrikethrough in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php \PHPExcel_Style_Font::getStrikethrough()
* Get Strikethrough * *
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Font.php, line 454
Class
- PHPExcel_Style_Font
- PHPExcel_Style_Font
Code
public function getStrikethrough() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getStrikethrough();
}
return $this->_strikethrough;
}