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