public function PHPExcel_Writer_HTML::setUseInlineCss in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php \PHPExcel_Writer_HTML::setUseInlineCss()
* Set use inline CSS? * *
Parameters
boolean $pValue: * @return PHPExcel_Writer_HTML
1 call to PHPExcel_Writer_HTML::setUseInlineCss()
- PHPExcel_Writer_PDF_Core::__construct in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ PDF/ Core.php - Create a new PHPExcel_Writer_PDF
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ HTML.php, line 1399
Class
- PHPExcel_Writer_HTML
- PHPExcel_Writer_HTML
Code
public function setUseInlineCss($pValue = false) {
$this->_useInlineCss = $pValue;
return $this;
}