Removes a timer event handler from the Timer control.
public final void removeOnTimer( EventHandler value )
value
The EventHandler object to remove.
The timer event is where you can place code that you want to run at regular intervals. Whenever the Timer control's enabled property is set to true and the interval property is greater than 0, the timer event is triggered at intervals based on the interval property setting.
See Also addOnTimer