Xojo.Core.Timer.Modes
From Xojo Documentation
Enumeration
Xojo.Core.Timer.Modes
Specifies when the timer gets called.
Values
Enum | Description |
---|---|
Off | Disables the Timer. The action event handler is no longer called. This is the default. |
Single | Calls the Action event handler once after the Period is reached, then turns the Timer to Off. |
Multiple | Call the Action event handler each time the Period is reached. |