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