ComponentOne Windows 7 Control Pack for WinForms
TimerTick Event



C1.Win.C1Win7Pack.4 Assembly > C1.Win.C1Win7Pack Namespace > C1TaskDialog Class : TimerTick Event
Occurs approximately every 200 milliseconds (while the dialog is visible) if the EnableTimer property is set to True.
Syntax
<C1DescriptionAttribute("Occurs approximately every 200 milliseconds if the EnableTimer property is set to True.")>
Public Event TimerTick As TaskDialogTimerTickEventHandler
Dim instance As C1TaskDialog
Dim handler As TaskDialogTimerTickEventHandler
 
AddHandler instance.TimerTick, handler
[C1Description("Occurs approximately every 200 milliseconds if the EnableTimer property is set to True.")]
public event TaskDialogTimerTickEventHandler TimerTick
[C1Description("Occurs approximately every 200 milliseconds if the EnableTimer property is set to True.")]
public:
event TaskDialogTimerTickEventHandler^ TimerTick
Event Data

The event handler receives an argument of type TaskDialogTimerTickEventArgs containing data related to this event. The following TaskDialogTimerTickEventArgs properties provide information specific to this event.

PropertyDescription
Gets or sets whether the timer should be reset.  
Gets the number of milliseconds since the dialog was created or since resetting the timer.  
See Also