public static function PHPExcel_Calculation_Logical::FALSE in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php \PHPExcel_Calculation_Logical::FALSE()
* FALSE * * Returns the boolean FALSE. * * Excel Function: * =FALSE() * * @access public * @category Logical Functions *
Return value
boolean False
1 call to PHPExcel_Calculation_Logical::FALSE()
- LogicalTest::testFALSE in vendor/
phpoffice/ phpexcel/ unitTests/ Classes/ PHPExcel/ Calculation/ LogicalTest.php
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Logical.php, line 77
Class
- PHPExcel_Calculation_Logical
- PHPExcel_Calculation_Logical
Code
public static function FALSE() {
return FALSE;
}