You are here

public function PHPExcel_Style_Conditional::setOperatorType in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php \PHPExcel_Style_Conditional::setOperatorType()

Set Operator type

Parameters

string $pValue PHPExcel_Style_Conditional operator type:

Return value

PHPExcel_Style_Conditional

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php, line 141

Class

PHPExcel_Style_Conditional
PHPExcel_Style_Conditional

Code

public function setOperatorType($pValue = PHPExcel_Style_Conditional::OPERATOR_NONE) {
  $this->_operatorType = $pValue;
  return $this;
}