PROTECTION_INHERIT
PROTECTION_INHERIT = 'inherit'
Protection styles
PHPExcel_Style_Protection
$_parent : \PHPExcel_Style
Parent. Only used for supervisor
$_hidden : string
Hidden
__construct(boolean $isSupervisor = FALSE, boolean $isConditional = FALSE)
Create a new PHPExcel_Style_Protection
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_Protection
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_Protection
Apply styles from array
$objPHPExcel->getActiveSheet()->getStyle('B2')->getLocked()->applyFromArray(
array(
'locked' => TRUE,
'hidden' => FALSE
)
);
array | $pStyles | Array containing style information |
setLocked(string $pValue = self::PROTECTION_INHERIT) : \PHPExcel_Style_Protection
Set locked
string | $pValue |
setHidden(string $pValue = self::PROTECTION_INHERIT) : \PHPExcel_Style_Protection
Set hidden
string | $pValue |