FGX.DateTimeControl.TfgCustomDateControl: различия между версиями
Перейти к навигации
Перейти к поиску
Admin (обсуждение | вклад) (summary) |
Admin (обсуждение | вклад) (summary) |
||
Строка 15: | Строка 15: | ||
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create(AOwner: [[TComponent]])</code> | | <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create(AOwner: [[TComponent]])</code> | ||
+ | |} | ||
+ | |||
+ | == Свойства == | ||
+ | |||
+ | {| class="wikitable sortable" | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>TodayDefault: [[Boolean]]</code> | ||
+ | Использовать текущую дату при первичном отображении. | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Date: [[TDate]]</code> | ||
+ | Значение даты без времени. | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>MinDate: [[TDate]]</code> | ||
+ | Минимальная дата, раньше которой нельзя выбрать дату '' Date '' . | ||
+ | |- | ||
+ | | <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>MaxDate: [[TDate]]</code> | ||
+ | Максимальная дата, позже которой нельзя выбрать дату '' Date '' . | ||
|} | |} |
Версия 04:31, 10 июня 2019
Delphi
TfgCustomDateControl = class (TfgCustomDateTimeControl)
Описание
Базовый контрол, который предоставляет базовую работу с датой.
Конструкторы
constructor
|
Create(AOwner: TComponent)
|
Свойства
property
|
TodayDefault: Boolean
Использовать текущую дату при первичном отображении. |
property
|
Date: TDate
Значение даты без времени. |
property
|
MinDate: TDate
Минимальная дата, раньше которой нельзя выбрать дату Date . |
property
|
MaxDate: TDate
Максимальная дата, позже которой нельзя выбрать дату Date . |