ScheduleTimerIn
Type
statement
Summary
Schedules a timer.
Syntax
schedule timer in <Time> seconds
Description
Scheduling a timer causes an OnTimer message to be sent to the widget in Time seconds.
Parameters
| Name | Type | Description |
|---|---|---|
Time | An expression which evaluates to a number. |
Examples
// Create a timer loop
public handler OnTimer()
...
schedule timer in 1 seconds
end handler
Related
message: OnTimer