| IsNoon Function | 
Unit
QESBPCSDateTime
Declaration
Function IsNoon(const DT: TDateTime): Boolean;
| Parameters | 
| DT | Time to process. | 
Category
Date/Time ComparisonImplementation
 
| function IsNoon (const DT: TDateTime): Boolean;
begin
     Result := Frac (DT) = 0.5;
End; | 
|  |