You are here

public function PHPExcel_Style_Font::getBold in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php \PHPExcel_Style_Font::getBold()

* Get Bold * *

Return value

boolean

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php, line 293

Class

PHPExcel_Style_Font
PHPExcel_Style_Font

Code

public function getBold() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getBold();
  }
  return $this->_bold;
}