AddFortnights Function |
Unit
QESBPCSDateTime
Declaration
Function AddFortnights(const DT: TDateTime; const FNights: Extended): TDateTime;
Parameters |
DT | Date/Time to process. |
Fortnights | Number of Fortnights to Add - can be negative. |
Category
Date/Time Arithmetic RoutinesImplementation
function AddFortnights (const DT: TDateTime; const FNights: Extended): TDateTime; begin Result := AddWeeks (DT, FNights * 2); End; |
|