klyn.gui.windows.Timer.timeout
event
public event timeout as ActionEvent
Description

Event emitted each time the timer interval elapses.

The event is dispatched by the GUI event loop. Handlers can update widgets and request repainting without crossing thread boundaries.

Example
timer = Timer(1000)
timer.timeout += lambda(e: ActionEvent): print("tick")
timer.start()