public function PHPExcel_Style_NumberFormat::getBuiltInFormatCode in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php \PHPExcel_Style_NumberFormat::getBuiltInFormatCode()
* Get Built-In Format Code * *
Return value
int
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ NumberFormat.php, line 223
Class
- PHPExcel_Style_NumberFormat
- PHPExcel_Style_NumberFormat
Code
public function getBuiltInFormatCode() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getBuiltInFormatCode();
}
return $this->_builtInFormatCode;
}