FILL_NONE
FILL_NONE = 'none'
$startColor : \PhpOffice\PhpSpreadsheet\Style\Color
Start color.
$endColor : \PhpOffice\PhpSpreadsheet\Style\Color
End color.
__construct(boolean $isSupervisor = false, boolean $isConditional = false)
Create a new 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(\PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style $parent, null|string $parentPropertyName = null) : $this
Bind parent. Only used for supervisor.
| \PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style | $parent | |
| null|string | $parentPropertyName |
getSharedComponent() : \PhpOffice\PhpSpreadsheet\Style\Fill
Get the shared style component for the currently active cell in currently active sheet.
Only used for style supervisor.
applyFromArray(array $pStyles) : $this
Apply styles from array.
$spreadsheet->getActiveSheet()->getStyle('B2')->getFill()->applyFromArray(
[
'fillType' => Fill::FILL_GRADIENT_LINEAR,
'rotation' => 0,
'startColor' => [
'rgb' => '000000'
],
'endColor' => [
'argb' => 'FFFFFFFF'
]
]
);
| array | $pStyles | Array containing style information |
getStartColor() : \PhpOffice\PhpSpreadsheet\Style\Color
Get Start Color.
setStartColor(\PhpOffice\PhpSpreadsheet\Style\Color $pValue) : $this
Set Start Color.
| \PhpOffice\PhpSpreadsheet\Style\Color | $pValue |
getEndColor() : \PhpOffice\PhpSpreadsheet\Style\Color
Get End Color.
setEndColor(\PhpOffice\PhpSpreadsheet\Style\Color $pValue) : $this
Set End Color.
| \PhpOffice\PhpSpreadsheet\Style\Color | $pValue |
exportArray2(array $exportedArray, \PhpOffice\PhpSpreadsheet\Style\string $index, mixed $objOrValue)
Populate array from exportArray1.
This method is available to anything which extends this class. The parameter index is the key to be added to the array. The parameter objOrValue is either a primitive type, which is the value added to the array, or a Style object to be recursively added via exportArray.
| array | $exportedArray | |
| \PhpOffice\PhpSpreadsheet\Style\string | $index | |
| mixed | $objOrValue |