You are here

public static function PHPExcel_Shared_Date::isDateTimeFormat in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php \PHPExcel_Shared_Date::isDateTimeFormat()

* Is a given number format a date/time? * *

Parameters

PHPExcel_Style_NumberFormat $pFormat: * @return boolean

1 call to PHPExcel_Shared_Date::isDateTimeFormat()
PHPExcel_Shared_Date::isDateTime in vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php
* Is a given cell a date/time? * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php, line 269

Class

PHPExcel_Shared_Date
PHPExcel_Shared_Date

Code

public static function isDateTimeFormat(PHPExcel_Style_NumberFormat $pFormat) {
  return self::isDateTimeFormatCode($pFormat
    ->getFormatCode());
}