Property TLWatchDogTimer.TTLWatchDogTimer.Repeating
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
Latest revision as of 00:10, 26 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TTLWatchDogTimer
Contents |
Syntax
Delphi:
property Repeating : Boolean read FRepeating write SetRepeating default False;
C++ Builder:
__property bool Repeating = { read=FRepeating, write=SetRepeating, default=False };
Summary
Specifies whether the the Watch Dog Timer event will repeat firing after the period expires.
Description
Use this property to specify whether the the Watch Dog Timer
event will repeat firing after the period expires.
Delphi example:
TLMainThreadEvent1.Repeating := True;
C++ Builder example:
TLMainThreadEvent1->Repeating = true;
Visual C++(MFC/Win32) example:
TLMainThreadEvent1.Repeating = true;
Visual C++/CLI example:
mainThreadEvent1->Repeating = true;
C# example:
mainThreadEvent1.Repeating = true;
VB example:
MainThreadEvent1.Repeating = True