[Overview][Constants][Procedures and functions][Index] Reference for unit 'DateUtils' (#rtl)

IncMinute

Increase a TDateTime value with a number of minutes.

Declaration

Source position: dateutil.inc line 306

function IncMinute(

  const AValue: TDateTime;

  const ANumberOfMinutes: Int64

):TDateTime;

function IncMinute(

  const AValue: TDateTime

):TDateTime;

Arguments

AValue

  

TDateTime to which minutes should be added.

ANumberOfMinutes

  

Number of minutes to add

Function result

TDateTime representing AValue plus ANumberOfMinutes minutes.

Arguments

AValue

  

TDateTime to which minutes should be added.

Description

IncMinute adds ANumberOfMinutes minutes to AValue and returns the resulting date/time.ANumberOfMinutes can be positive or negative.

See also

IncYear

  

Increase a TDateTime value with a number of years.

#rtl.sysutils.IncMonth

  

Increases the month in a TDateTime value with a given amount.

IncWeek

  

Increase a TDateTime value with a number of weeks.

IncDay

  

Increase a TDateTime value with a number of days.

IncHour

  

Increase a TDateTime value with a number of hours.

IncSecond

  

Increase a TDateTime value with a number of seconds.

IncMilliSecond

  

Increase a TDateTime value with a number of milliseconds.

Example

Program Example76;

{ This program demonstrates the IncMinute function }

Uses SysUtils,DateUtils;

Begin
  Writeln('One Minute from now is ',TimeToStr(IncMinute(Time,1)));
  Writeln('One Minute ago from now is ',TimeToStr(IncMinute(Time,-1)));
End.

Documentation generated on: May 14 2021