FILL_NONE
FILL_NONE = 'none'
PHPExcel_Style_Fill
$_parent : \PHPExcel_Style
Parent. Only used for supervisor
$_startColor : \PHPExcel_Style_Color
Start color
$_endColor : \PHPExcel_Style_Color
End color
__construct(boolean $isSupervisor = FALSE, boolean $isConditional = FALSE)
Create a new PHPExcel_Style_Fill
boolean | $isSupervisor | Flag indicating if this is a supervisor or not Leave this value at default unless you understand exactly what its ramifications are |
boolean | $isConditional | Flag indicating if this is a conditional style or not Leave this value at default unless you understand exactly what its ramifications are |
bindParent(\PHPExcel $parent, $parentPropertyName = NULL) : \PHPExcel_Style_Supervisor
Bind parent. Only used for supervisor
\PHPExcel | $parent | |
$parentPropertyName |
getActiveSheet() : \PHPExcel_Worksheet
Get the currently active sheet. Only used for supervisor
getSharedComponent() : \PHPExcel_Style_Fill
Get the shared style component for the currently active cell in currently active sheet.
Only used for style supervisor
applyFromArray(array $pStyles = null) : \PHPExcel_Style_Fill
Apply styles from array
$objPHPExcel->getActiveSheet()->getStyle('B2')->getFill()->applyFromArray(
array(
'type' => PHPExcel_Style_Fill::FILL_GRADIENT_LINEAR,
'rotation' => 0,
'startcolor' => array(
'rgb' => '000000'
),
'endcolor' => array(
'argb' => 'FFFFFFFF'
)
)
);
array | $pStyles | Array containing style information |
setFillType(string $pValue = \PHPExcel_Style_Fill::FILL_NONE) : \PHPExcel_Style_Fill
Set Fill Type
string | $pValue | PHPExcel_Style_Fill fill type |
setRotation(double $pValue) : \PHPExcel_Style_Fill
Set Rotation
double | $pValue |
getStartColor() : \PHPExcel_Style_Color
Get Start Color
setStartColor(\PHPExcel_Style_Color $pValue = null) : \PHPExcel_Style_Fill
Set Start Color
\PHPExcel_Style_Color | $pValue |
getEndColor() : \PHPExcel_Style_Color
Get End Color
setEndColor(\PHPExcel_Style_Color $pValue = null) : \PHPExcel_Style_Fill
Set End Color
\PHPExcel_Style_Color | $pValue |