You are here

public static function PHPExcel_Calculation::getTRUE in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php \PHPExcel_Calculation::getTRUE()

* Return the locale-specific translation of TRUE * * @access public *

Return value

string locale-specific translation of TRUE

17 calls to PHPExcel_Calculation::getTRUE()
PHPExcel_Calculation_Logical::LOGICAL_AND in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php
* LOGICAL_AND * * Returns boolean TRUE if all its arguments are TRUE; returns FALSE if one or more argument is FALSE. * * Excel Function: * =AND(logical1[,logical2[, ...]]) * * The arguments must evaluate to logical values such as TRUE…
PHPExcel_Calculation_Logical::LOGICAL_OR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php
* LOGICAL_OR * * Returns boolean TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE. * * Excel Function: * =OR(logical1[,logical2[, ...]]) * * The arguments must evaluate to logical values such as TRUE or FALSE, or…
PHPExcel_Calculation_Logical::NOT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php
* NOT * * Returns the boolean inverse of the argument. * * Excel Function: * =NOT(logical) * * The argument must evaluate to a logical value such as TRUE or FALSE * * Boolean arguments are treated as True or False as appropriate …
PHPExcel_Calculation_TextData::ASCIICODE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php
* ASCIICODE * *
PHPExcel_Calculation_TextData::CONCATENATE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php
* CONCATENATE * *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php, line 1833

Class

PHPExcel_Calculation
PHPExcel_Calculation (Multiton)

Code

public static function getTRUE() {
  return self::$_localeBoolean['TRUE'];
}