Page 1 of 1

AddTime

Posted: 30 Nov 2013
by TJ

Code: Select all

[LegacyColorValue = true];

{ User Function: AddTime
Syntax : AddTime ( xTime, Minutes )
Inputs : xTime - time in 24 hour format.
Minutes - amount to add/subtract to xTime.

Sample Usage :
if Time > AddTime (Sess1StartTime, +30)
then ...

Returns: Adjusted time in 24 hour format.
Properties
[ ] Auto Detect
[*] Simple
[ ] Series

Provided by Product Support Dept.
of Omega Research, Inc.
}

Inputs :
xTime (NumericSimple),
Minutes (NumericSimple) ;

AddTime = MinutesToTime (TimeToMinutes (xTime) + Minutes) ;