DIAGONAL_NONE
DIAGONAL_NONE = 0
PHPExcel_Style_Borders
$_isSupervisor : bool
Supervisor?
$_parent : \PHPExcel_Style
Parent. Only used for supervisor
$_left : \PHPExcel_Style_Border
Left
$_right : \PHPExcel_Style_Border
Right
$_top : \PHPExcel_Style_Border
Top
$_bottom : \PHPExcel_Style_Border
Bottom
$_diagonal : \PHPExcel_Style_Border
Diagonal
$_diagonalDirection : int
DiagonalDirection
$_allBorders : \PHPExcel_Style_Border
All borders psedo-border. Only applies to supervisor.
$_outline : \PHPExcel_Style_Border
Outline psedo-border. Only applies to supervisor.
$_inside : \PHPExcel_Style_Border
Inside psedo-border. Only applies to supervisor.
$_vertical : \PHPExcel_Style_Border
Vertical pseudo-border. Only applies to supervisor.
$_horizontal : \PHPExcel_Style_Border
Horizontal pseudo-border. Only applies to supervisor.
__construct(bool $isSupervisor = FALSE, bool $isConditional = FALSE) : mixed
Create a new PHPExcel_Style_Borders
bool | $isSupervisor | Flag indicating if this is a supervisor or not Leave this value at default unless you understand exactly what its ramifications are |
bool | $isConditional | Flag indicating if this is a conditional style or not Leave this value at default unless you understand exactly what its ramifications are |
applyFromArray(array $pStyles = null) : \PHPExcel_Style_Borders
Apply styles from array
$objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray(
array(
'bottom' => array(
'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
'color' => array(
'rgb' => '808080'
)
),
'top' => array(
'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
'color' => array(
'rgb' => '808080'
)
)
)
);
$objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->applyFromArray(
array(
'allborders' => array(
'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
'color' => array(
'rgb' => '808080'
)
)
)
);
array | $pStyles | Array containing style information |