*TimeDelays()
Sets the time delay for each of the windows on a page.
Syntax
*TimeDelays(delay_1, delay_2, …)
Application
Only relevant in the page context of report templates.
Inputs
- delay_x
- The time delay for window "X" on the page. The number of arguments is dependent on the number of windows.
Example
*BeginPage() // Page 1
*Title("Untitled", Off)
*Layout(10)
*AnimationMode(Transient)
*BeginPlot()
*EndPlot()
*BeginPlot()
*EndPlot()
*BeginPlot()
*EndPlot()
*BeginPlot()
*EndPlot()
*TimeScales(1, 2, 3, 4)
*TimeDelays(0.1, 0, 0.2, 0)
*EndPage()
Comments
This statement is only valid in reports, not in session files.