IsDecember Function
Returns True if the given Date's Month is December.

Unit
QESBPCSDateTime

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

Parameters
DT Date to process.

Category
Date/Time Comparison

Implementation

function IsDecember (const DT: TDateTime): Boolean;
begin
     Result := Date2Month (DT) = 12;
End;


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