DaysLeftInMonth Function |
Unit
QESBPCSDateTime
Declaration
Function DaysLeftInMonth(const DT: TDateTime): Byte;
Parameters |
DT | Date/Time to process. |
Category
Date/Time Arithmetic Routines
Month Based Arithmetic RoutinesImplementation
function DaysLeftInMonth (const DT: TDateTime): Byte; begin Result := DaysInMonth (DT) - Date2Day (DT); End; |
|