TIME Function

Returns the time indicating the current system time or the time taken to run the script

 

TIME

 

Arguments

None

 

Remarks

Target is String -  String contains the current system time.

Target is Integer -  Number of seconds that the script has been running

 

Example

Dim value as String

value = Time()  ' Returns a string in the for HH:MM:SS i.e. 12:03:16

Dim mytime as integer

mytime = TIME()  ' Returns an integer that contains the number of seconds the script has been running

PRINT "Complete in " + DECV(MyTime) + " Seconds"