[Overview][Constants][Procedures and functions][Index] |
Increase a TDateTime value with a number of seconds.
Source position: dateutil.inc line 308
function IncSecond( |
const AValue: TDateTime; |
const ANumberOfSeconds: Int64 |
):TDateTime; |
const AValue: TDateTime |
):TDateTime; |
AValue |
|
TDateTime to which seconds should be added. |
ANumberOfSeconds |
|
Number of seconds to add |
TDateTime representing AValue plus ANumberOfSeconds seconds.
AValue |
|
TDateTime to which seconds should be added. |
IncSecond adds ANumberOfSeconds seconds to AValue and returns the resulting date/time.ANumberOfSeconds can be positive or negative.
|
Increase a TDateTime value with a number of years. |
|
|
Increases the month in a TDateTime value with a given amount. |
|
|
Increase a TDateTime value with a number of weeks. |
|
|
Increase a TDateTime value with a number of days. |
|
|
Increase a TDateTime value with a number of hours. |
|
|
Increase a TDateTime value with a number of seconds. |
|
|
Increase a TDateTime value with a number of milliseconds. |
Program Example77; { This program demonstrates the IncSecond function } Uses SysUtils,DateUtils; Begin Writeln('One Second from now is ',TimeToStr(IncSecond(Time,1))); Writeln('One Second ago from now is ',TimeToStr(IncSecond(Time,-1))); End.