Increase a TDateTime value with a number of years.
Source position: dateutil.inc line 306
function IncYear(  | 
const AValue: TDateTime;  | 
const ANumberOfYears: Integer  | 
):TDateTime;  | 
const AValue: TDateTime  | 
):TDateTime;  | 
AValue  | 
  | 
TDateTime to which years should be added.  | 
ANumberOfYears  | 
  | 
Number of years to add.  | 
TDateTime representing AValue plus ANumberOfYears years.
AValue  | 
  | 
TDateTime to which years should be added.  | 
IncYear adds ANumberOfYears years to AValue and returns the resulting date/time. ANumberOfYears can be positive or negative.
  | 
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 minutes.  | 
|
  | 
Increase a TDateTime value with a number of seconds.  | 
|
  | 
Increase a TDateTime value with a number of milliseconds.  | 
Program Example71; { This program demonstrates the IncYear function } Uses SysUtils,DateUtils; Begin Writeln('One year from today is ',DateToStr(IncYear(Today,1))); Writeln('One year ago from today is ',DateToStr(IncYear(Today,-1))); End.