BORDER_NONE
BORDER_NONE = 'none'
PHPExcel_Style_Border
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
$color : \PHPExcel_Style_Color
Border color
__construct(boolean $isSupervisor = false, boolean $isConditional = false)
Create a new PHPExcel_Style_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(\PHPExcel_Style_Borders $parent, string $parentPropertyName = null) : \PHPExcel_Style_Border
Bind parent. Only used for supervisor
\PHPExcel_Style_Borders | $parent | |
string | $parentPropertyName |
getActiveSheet() : \PHPExcel_Worksheet
Get the currently active sheet. Only used for supervisor
getSharedComponent() : \PHPExcel_Style_Border
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_Border
Apply styles from array
$objPHPExcel->getActiveSheet()->getStyle('B2')->getBorders()->getTop()->applyFromArray(
array(
'style' => PHPExcel_Style_Border::BORDER_DASHDOT,
'color' => array(
'rgb' => '808080'
)
)
);
array | $pStyles | Array containing style information |
setBorderStyle(string|boolean $pValue = \PHPExcel_Style_Border::BORDER_NONE) : \PHPExcel_Style_Border
Set Border style
string|boolean | $pValue | When passing a boolean, FALSE equates PHPExcel_Style_Border::BORDER_NONE and TRUE to PHPExcel_Style_Border::BORDER_MEDIUM |
getColor() : \PHPExcel_Style_Color
Get Border Color
setColor(\PHPExcel_Style_Color $pValue = null) : \PHPExcel_Style_Border
Set Border Color
\PHPExcel_Style_Color | $pValue |