Computer Access Technology Corporation
IB
Tracer
Verification Script Engine Manual, version 1.0
Page 25 of 35
13. Time text functions
This group of functions covers VSE capability to convert VSE time objects into text strings.
13.1 TimeToText()
Converts a VSE time object into text.
Format
:
TimeToText (
time
)
Return values:
Returns text representation of VSE time object
Parameters:
time
- VSE time object
Example:
t = Time(100);
ReportText( TimeToText(t) ); # see below details for ReportText() function
14. Output
functions
This group of functions covers VSE capability to present information in the output window.
14.1 ReportText()
Outputs text in the output window if output is enabled
Format
:
ReportText (
time
)
Parameters:
time
- VSE time object
Example:
t = Time(100)
ReportText ( t );