[About] Version=1.0 Author=Dilma,Nic Mail=support@hiasm.com [Type] Class=Element Info=Implements a timer that raises an event at user-defined intervals. This timer is optimized for use in Windows Forms applications and must be used in a window. [Property] @AutoStop=If greater 0 then the timer to be stopped after a given number of iterations, otherwise to be run continuously. When you restart the timer counter is reset. ARG(int)|1|0 @Enabled=Sets whether the timer is running. ARG(bool)|14|1|True,False @Interval=Sets the time, in milliseconds, before the Tick event is raised relative to the last occurrence of the Tick event. ARG(int)|1|1000 @Tag=Sets an arbitrary string representing some type of user state. ARG(Object)|20|(empty)|Object IgnoreOverCall=Sets the value indicating whether ignore over call the timer. ARG(bool)|14|0|True,False [Methods] doStart=Starts the timer. ARG()|1|0 doStop=Stops the timer. ARG()|1|0 onTick=Occurs when the specified timer interval has elapsed and the timer is enabled. ARG(EventArgs)|2|0 *Enabled=Returns whether the timer is running. ARG(bool)|3|104 *Interval=Returns the time, in milliseconds, before the Tick event is raised relative to the last occurrence of the Tick event. ARG(int)|3|1 *Tag=Returns an arbitrary string representing some type of user state. ARG(Object)|3|0 Timer=Returns the Timer object. ARG(Timer)|3|0