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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 1: Строка 1:
 
* [[ FGX.Button | Вверх к родителю: FGX.Button ]]
 
* [[ FGX.Button | Вверх к родителю: FGX.Button ]]
* [[ FGX.Button.TfgCustomButton_Methods | Методы ]]
 
* [[ FGX.Button.TfgCustomButton_Properties | Свойства ]]
 
  
 
Delphi
 
Delphi
  
 
<syntaxhighlight lang="Delphi">TfgCustomButton = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</syntaxhighlight>
 
<syntaxhighlight lang="Delphi">TfgCustomButton = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</syntaxhighlight>
 
== Конструкторы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <code>constructor</code> || <code>Create(AOwner: TComponent)</code>
 
 
|}
 
 
== Свойства ==
 
 
{| class="wikitable sortable"
 
|-
 
| <code>property</code> || <code>ImageLink: TfgAssetLink</code>
 
 
|-
 
| <code>property</code> || <code>Text: string</code>
 
 
|-
 
| <code>property</code> || <code>ImageName: TfgAssetName</code>
 
 
|-
 
| <code>property</code> || <code>ImageLocation: TfgImageLocation</code>
 
 
|-
 
| <code>property</code> || <code>Kind: TfgButtonKind</code>
 
 
|-
 
| <code>property</code> || <code>TextSettings: TfgButtonTextSettings</code>
 
 
|-
 
| <code>property</code> || <code>Shadow: TfgBorderShadow</code>
 
Тень текста.
 
|}
 
 
== Константы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <code>const</code> || <code>DefaultImageLocation: TfgImageLocation</code>
 
 
|-
 
| <code>const</code> || <code>DefaultButtonKind: TfgButtonKind</code>
 
 
|}
 

Версия 03:40, 10 июня 2019

Delphi

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