| IsLastDayOfYear Function | 
Unit
QESBPCSDateTime
Declaration
Function IsLastDayOfYear(const DT: TDateTime): Boolean;
| Parameters | 
| DT | Date to process. | 
Category
Date/Time Comparison
Year Based Arithmetic RoutinesImplementation
 
| function IsLastDayOfYear (const DT: TDateTime): Boolean;
begin
     Result := Int (DT) = Int (GetLastDayOfYear (DT));
End; | 
|  |