Definition at line 36 of file Function.php.
◆ __construct()
PHPExcel_Calculation_Function::__construct |
( |
|
$pCategory = NULL , |
|
|
|
$pExcelName = NULL , |
|
|
|
$pPHPExcelName = NULL |
|
) |
| |
Create a new PHPExcel_Calculation_Function.
- Parameters
-
string | $pCategory | Category (represented by CATEGORY_*) |
string | $pExcelName | Excel function name |
string | $pPHPExcelName | PHPExcel function mapping |
- Exceptions
-
Definition at line 79 of file Function.php.
81 if (($pCategory !== NULL) && ($pExcelName !== NULL) && ($pPHPExcelName !== NULL)) {
83 $this->_category = $pCategory;
84 $this->_excelName = $pExcelName;
85 $this->_phpExcelName = $pPHPExcelName;
◆ getCategory()
PHPExcel_Calculation_Function::getCategory |
( |
| ) |
|
Get Category (represented by CATEGORY_*)
- Returns
- string
Definition at line 96 of file Function.php.
References $_category.
◆ getExcelName()
PHPExcel_Calculation_Function::getExcelName |
( |
| ) |
|
◆ getPHPExcelName()
PHPExcel_Calculation_Function::getPHPExcelName |
( |
| ) |
|
◆ setCategory()
PHPExcel_Calculation_Function::setCategory |
( |
|
$value = null | ) |
|
Set Category (represented by CATEGORY_*)
- Parameters
-
- Exceptions
-
Definition at line 106 of file Function.php.
107 if (!is_null($value)) {
108 $this->_category = $value;
◆ setExcelName()
PHPExcel_Calculation_Function::setExcelName |
( |
|
$value | ) |
|
Set Excel name.
- Parameters
-
Definition at line 128 of file Function.php.
129 $this->_excelName = $value;
◆ setPHPExcelName()
PHPExcel_Calculation_Function::setPHPExcelName |
( |
|
$value | ) |
|
◆ $_category
PHPExcel_Calculation_Function::$_category |
|
private |
◆ $_excelName
PHPExcel_Calculation_Function::$_excelName |
|
private |
◆ $_phpExcelName
PHPExcel_Calculation_Function::$_phpExcelName |
|
private |
◆ CATEGORY_CUBE
const PHPExcel_Calculation_Function::CATEGORY_CUBE = 'Cube' |
◆ CATEGORY_DATABASE
const PHPExcel_Calculation_Function::CATEGORY_DATABASE = 'Database' |
◆ CATEGORY_DATE_AND_TIME
const PHPExcel_Calculation_Function::CATEGORY_DATE_AND_TIME = 'Date and Time' |
◆ CATEGORY_ENGINEERING
const PHPExcel_Calculation_Function::CATEGORY_ENGINEERING = 'Engineering' |
◆ CATEGORY_FINANCIAL
const PHPExcel_Calculation_Function::CATEGORY_FINANCIAL = 'Financial' |
◆ CATEGORY_INFORMATION
const PHPExcel_Calculation_Function::CATEGORY_INFORMATION = 'Information' |
◆ CATEGORY_LOGICAL
const PHPExcel_Calculation_Function::CATEGORY_LOGICAL = 'Logical' |
◆ CATEGORY_LOOKUP_AND_REFERENCE
const PHPExcel_Calculation_Function::CATEGORY_LOOKUP_AND_REFERENCE = 'Lookup and Reference' |
◆ CATEGORY_MATH_AND_TRIG
const PHPExcel_Calculation_Function::CATEGORY_MATH_AND_TRIG = 'Math and Trig' |
◆ CATEGORY_STATISTICAL
const PHPExcel_Calculation_Function::CATEGORY_STATISTICAL = 'Statistical' |
◆ CATEGORY_TEXT_AND_DATA
const PHPExcel_Calculation_Function::CATEGORY_TEXT_AND_DATA = 'Text and Data' |
The documentation for this class was generated from the following file:
- libs/composer/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php