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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 3: Строка 3:
 
Delphi
 
Delphi
  
<code lang="Delphi">TfgCustomDateTimeControl = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</code>
+
<syntaxhighlight lang="Delphi">TfgCustomDateTimeControl = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</syntaxhighlight>
 
 
== Описание ==
 
 
 
Базовый контрол, который поддерживает базовую работу с датой/временем.
 
 
 
== Конструкторы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>constructor</code> || <code>Create(AOwner: [[TComponent]])</code>
 
 
 
|}
 
 
 
== Свойства ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>property</code> || <code>DateTime: [[TDateTime]]</code>
 
Текущая выбранная дата.
 
|}
 
 
 
== События ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>event</code> || <code>OnChanged: [[TNotifyEvent]]</code>
 
Вызывается, когда пользователь выбирает дату/время.
 
|}
 

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

Delphi

TfgCustomDateTimeControl = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)