WebTimer.Mode
From Xojo Documentation
Property (As Integer )
aWebTimer.Mode = newIntegerValue
or
IntegerValue = aWebTimer.Mode
New in 2010r4
Supported for all project types and targets.
or
IntegerValue = aWebTimer.Mode
New in 2010r4
Supported for all project types and targets.
The frequency with which the WebTimer will execute its Action event.
Notes
Use the following Timer class constants to specify the value of Mode.
Constant | Interval |
---|---|
ModeOff | Timer is Off |
ModeSingle | Timer will fire once. |
ModeMultiple | The Timer will fire repeatedly (the default). |
Example
The following line in the Open event specifies the Single mode:
Me.Mode = Timer.ModeSingle
See Also
Timer class.