DIAGONAL_NONE
DIAGONAL_NONE = 0
PHPExcel_Style_Borders
Copyright (c) 2006 - 2015 PHPExcel
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
$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
$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(boolean $isSupervisor = false, boolean $isConditional = false)
Create a new PHPExcel_Style_Borders
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_Borders
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_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 |
getLeft() : \PHPExcel_Style_Border
Get Left
getRight() : \PHPExcel_Style_Border
Get Right
getTop() : \PHPExcel_Style_Border
Get Top
getBottom() : \PHPExcel_Style_Border
Get Bottom
getDiagonal() : \PHPExcel_Style_Border
Get Diagonal
getAllBorders() : \PHPExcel_Style_Border
Get AllBorders (pseudo-border). Only applies to supervisor.
getVertical() : \PHPExcel_Style_Border
Get Vertical (pseudo-border). Only applies to supervisor.
getHorizontal() : \PHPExcel_Style_Border
Get Horizontal (pseudo-border). Only applies to supervisor.
setDiagonalDirection(integer $pValue = \PHPExcel_Style_Borders::DIAGONAL_NONE) : \PHPExcel_Style_Borders
Set DiagonalDirection
integer | $pValue |