FGX.Timer.TfgCustomTimer: различия между версиями

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 3: Строка 3:
 
Delphi
 
Delphi
  
<code lang="Delphi">TfgCustomTimer = class (TComponent, IInterfaceComponentReference, IInterface)</code>
+
<syntaxhighlight lang="Delphi">TfgCustomTimer = class (TComponent, IInterfaceComponentReference, IInterface)</syntaxhighlight>
 
 
== Описание ==
 
 
 
Описание отсутствует.
 
 
 
== Конструкторы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>constructor</code> || <code>Create(AOwner: [[TComponent]])</code>
 
 
 
|}
 
 
 
== Свойства ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>property</code> || <code>Enabled: [[Boolean]]</code>
 
Включить/выключить таймер.
 
|-
 
| <code>property</code> || <code>Interval: [[Integer]]</code>
 
Интервал срабатывания в мсек. события таймера '' OnTimer '' .
 
|-
 
| <code>property</code> || <code>Delay: [[Integer]]</code>
 
Задержка в мсек. перед первым срабатыванием.
 
|-
 
| <code>property</code> || <code>Kind: [[.TfgTimerKind|TfgTimerKind]]</code>
 
Тип таймера.
 
|}
 
 
 
== События ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>event</code> || <code>OnTimer: [[TNotifyEvent]]</code>
 
Событие, срабатывающее по прошествии указанного интервала '' Interval '' .
 
|}
 
 
 
== Константы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>const</code> || <code>DefaultKind: [[.TfgTimerKind|TfgTimerKind]]</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultEnabled: [[Boolean]]</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultInterval: [[Integer]]</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultDelay: [[Integer]]</code>
 
 
 
|}
 

Версия 04:57, 10 июня 2019

Delphi

TfgCustomTimer = class (TComponent, IInterfaceComponentReference, IInterface)