public function PHPExcel_Style_Font::getUnderline 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::getUnderline()
* Get Underline * *
Return value
string
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Font.php, line 419
Class
- PHPExcel_Style_Font
- PHPExcel_Style_Font
Code
public function getUnderline() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getUnderline();
}
return $this->_underline;
}