OptDaysLeftInYear Function |
Unit
QESBPCSDateTime
Declaration
Function OptDaysLeftInYear(const DT: TDateTime): Integer;
Parameters |
DT | Date/Time to process. |
Category
Date/Time Arithmetic Routines
Year Based Arithmetic RoutinesImplementation
function OptDaysLeftInYear (const DT: TDateTime): Integer; begin Result := DaysInYear (DT) - OptDayOfYear (DT); End; |
|