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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 1: Строка 1:
 
* [[ FGX.Timer | Вверх к родителю: FGX.Timer ]]
 
* [[ FGX.Timer | Вверх к родителю: FGX.Timer ]]
* [[ FGX.Timer.TfgCustomTimer_Methods | Методы ]]
 
* [[ FGX.Timer.TfgCustomTimer_Properties | Свойства ]]
 
  
 
Delphi
 
Delphi
  
<syntaxhighlight lang="Delphi">TfgCustomTimer = class (TComponent, IInterfaceComponentReference, IInterface)</syntaxhighlight>
+
<code lang="Delphi">TfgCustomTimer = class (TComponent, IInterfaceComponentReference, IInterface)</code>
 
 
== Конструкторы ==
 
 
 
{| 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</code>
 
Тип таймера.
 
|}
 
 
 
== События ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>event</code> || <code>OnTimer: TNotifyEvent</code>
 
Событие, срабатывающее по прошествии указанного интервала '' Interval '' .
 
|}
 
 
 
== Константы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>const</code> || <code>DefaultKind: TfgTimerKind</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultEnabled: Boolean</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultInterval: Integer</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultDelay: Integer</code>
 
 
 
|}
 

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

Delphi

TfgCustomTimer = class (TComponent, IInterfaceComponentReference, IInterface)