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