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