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