UNDERLINE_NONE
UNDERLINE_NONE = 'none'
$color : \PhpOffice\PhpSpreadsheet\Style\Color
Foreground color.
__construct(boolean $isSupervisor = false, boolean $isConditional = false)
Create a new Font.
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\Font
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')->getFont()->applyFromArray(
[
'name' => 'Arial',
'bold' => TRUE,
'italic' => FALSE,
'underline' => \PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_DOUBLE,
'strikethrough' => FALSE,
'color' => [
'rgb' => '808080'
]
]
);
array | $pStyles | Array containing style information |
getColor() : \PhpOffice\PhpSpreadsheet\Style\Color
Get Color.
setColor(\PhpOffice\PhpSpreadsheet\Style\Color $pValue) : $this
Set Color.
\PhpOffice\PhpSpreadsheet\Style\Color | $pValue |