You are here

public function PHPExcel_Style_Font::getSuperScript 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::getSuperScript()

* Get SuperScript * *

Return value

boolean

File

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

Class

PHPExcel_Style_Font
PHPExcel_Style_Font

Code

public function getSuperScript() {
  if ($this->_isSupervisor) {
    return $this
      ->getSharedComponent()
      ->getSuperScript();
  }
  return $this->_superScript;
}