Microsoft Small Basic


Timer

The Timer object provides an easy way for doing something repeatedly with a constant interval between.

Properties

Interval

Timer.Interval

Gets or sets the interval (in milliseconds) specifying how often the timer should raise the Tick event. This value can range from 10 to 100000000

Events

Tick

Timer.Tick

Raises an event when the timer ticks.

Operations

Pause

Timer.Pause()

Pauses the timer. Tick events will not be raised.

Returns

Nothing

Resume

Timer.Resume()

Resumes the timer from a paused state. Tick events will now be raised.

Returns

Nothing