BORDER_NONE
BORDER_NONE = 'none'
$parent : \PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style
Parent. Only used for supervisor.
$color : \PhpOffice\PhpSpreadsheet\Style\Color
Border color.
__construct(boolean $isSupervisor = false, boolean $isConditional = false)
Create a new Border.
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) : \PhpOffice\PhpSpreadsheet\Style\Supervisor
Bind parent. Only used for supervisor.
\PhpOffice\PhpSpreadsheet\Spreadsheet|\PhpOffice\PhpSpreadsheet\Style\Style | $parent | |
null|string | $parentPropertyName |
getActiveSheet() : \PhpOffice\PhpSpreadsheet\Worksheet\Worksheet
Get the currently active sheet. Only used for supervisor.
getSharedComponent() : \PhpOffice\PhpSpreadsheet\Style\Border
Get the shared style component for the currently active cell in currently active sheet.
Only used for style supervisor.
applyFromArray(array $pStyles) : \PhpOffice\PhpSpreadsheet\Style\Border
Apply styles from array.
$spreadsheet->getActiveSheet()->getStyle('B2')->getBorders()->getTop()->applyFromArray(
[
'borderStyle' => Border::BORDER_DASHDOT,
'color' => [
'rgb' => '808080'
]
]
);
array | $pStyles | Array containing style information |
setBorderStyle(boolean|string $pValue) : \PhpOffice\PhpSpreadsheet\Style\Border
Set Border style.
boolean|string | $pValue | When passing a boolean, FALSE equates Border::BORDER_NONE and TRUE to Border::BORDER_MEDIUM |
getColor() : \PhpOffice\PhpSpreadsheet\Style\Color
Get Border Color.
setColor(\PhpOffice\PhpSpreadsheet\Style\Color $pValue) : \PhpOffice\PhpSpreadsheet\Style\Border
Set Border Color.
\PhpOffice\PhpSpreadsheet\Style\Color | $pValue |