Adds a Floating Point amount of Days to a Given Date/Time.Unit
QESBPCSDateTime
Declaration
Function AddDays(const DT: TDateTime; const Days: Extended): TDateTime;
Description
Though this is the same as normal Addition it is added for completion.
DT | Date/Time to process. |
Dayss | Number of Days to Add - can be negative. |
Category
Date/Time Arithmetic Routines
Implementation
function AddDays (const DT: TDateTime; const Days: Extended): TDateTime;
begin
Result := DT + Days;
End; |
HTML generated by Time2HELP
|
http://www.time2help.com