Equinox Online Help - Language Reference - A to Z

Home

Hmsadd

Applies to
SyntaxHmsadd(TimeExpression [, HoursExpression, MinutesExpression, SecondsExpression])
Action[Function] Returns a time constant calculated by adding offsets to a starting time.
ScopeUsable anywhere.
Notes

The function returns a time value, calculated by adding hour, minute and second to TimeExpression. HoursExpression, MinutesExpression and SecondsExpression are optional and you may include one, two, or all of them. If you omit any of these arguments they default to zero.

CategoryTime handling
See Also Hms, Hour, Minute, Now, Second, Timer
Example

The following example adds one hour to the variable LastCall and places the result in NextCall.

NextCall = Hmsadd(LastCall, 1)