public function PHPExcel_Style_Fill::getStyleArray in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php \PHPExcel_Style_Fill::getStyleArray()
* Build style array from subcomponents * *
Parameters
array $array: * @return array
3 calls to PHPExcel_Style_Fill::getStyleArray()
- PHPExcel_Style_Fill::applyFromArray in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php - * Apply styles from array * * <code> * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFill()->applyFromArray( * array( * 'type' => PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR, …
- PHPExcel_Style_Fill::setFillType in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php - * Set Fill Type * *
- PHPExcel_Style_Fill::setRotation in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php - * Set Rotation * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Style/ Fill.php, line 135
Class
- PHPExcel_Style_Fill
- PHPExcel_Style_Fill
Code
public function getStyleArray($array) {
return array(
'fill' => $array,
);
}