Action
Generates and returns a TIME value constructed from the arguments you supply.
Syntax
Time = MakeTime (iHour [,iMinute, iSecond, iMicrosec])
Variable
|
Description
|
Time
|
The returned time, as specified.
TIME.
|
iHour
|
The hour value in 24-hour format (0 - 23).
INTEGER.
|
iMinute
|
Optional: The minute (0 - 59).
INTEGER.
|
iSecond
|
Optional: The second (0 - 59).
INTEGER.
|
iMicrosec
|
Optional: The microsecond (0 - 9999999).
INTEGER.
|
Example
// Specify a time of 2:08:15 PM
time = MakeTime (14, 8, 15)