public function PHPExcel_Style_Font::getSuperScript 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::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;
}