IsPM Function
Returns True if the Time portion is a PM value.

Unit
QESBPCSDateTime

Declaration
Function IsPM(const DT: TDateTime): Boolean;

Parameters
DT Time to process.

Category
Date/Time Comparison

Implementation

function IsPM (const DT: TDateTime): Boolean;
begin
     Result := not IsAM (DT);
End;


HTML generated by Time2HELP
http://www.time2help.com