public function PHPExcel_Style_Font::setItalic in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php \PHPExcel_Style_Font::setItalic()
* Set Italic * *
Parameters
boolean $pValue: * @return PHPExcel_Style_Font
1 call to PHPExcel_Style_Font::setItalic()
- PHPExcel_Style_Font::applyFromArray in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Font.php - * Apply styles from array * * <code> * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->applyFromArray( * array( * 'name' => 'Arial', * 'bold' => TRUE, …
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Font.php, line 337
Class
- PHPExcel_Style_Font
- PHPExcel_Style_Font
Code
public function setItalic($pValue = false) {
if ($pValue == '') {
$pValue = false;
}
if ($this->_isSupervisor) {
$styleArray = $this
->getStyleArray(array(
'italic' => $pValue,
));
$this
->getActiveSheet()
->getStyle($this
->getSelectedCells())
->applyFromArray($styleArray);
}
else {
$this->_italic = $pValue;
}
return $this;
}