public function PHPExcel_Style::getQuotePrefix in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php \PHPExcel_Style::getQuotePrefix()
Get quote prefix
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style.php, line 596
Class
- PHPExcel_Style
- PHPExcel_Style
Code
public function getQuotePrefix() {
if ($this->_isSupervisor) {
return $this
->getSharedComponent()
->getQuotePrefix();
}
return $this->_quotePrefix;
}