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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 5: Строка 5:
 
Delphi
 
Delphi
  
<code>TfgCustomProgressBar = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</code>
+
<syntaxhighlight lang="Delphi">TfgCustomProgressBar = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</syntaxhighlight>
 
 
== Конструкторы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>constructor</code> || <code>Create(AOwner: TComponent)</code>
 
 
 
|}
 
 
 
== Методы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>procedure</code> || <code>IncProgress(const AStep: Integer)</code>
 
Увеличивает текущее значение '' Progress '' на '' AStep '' .
 
|}
 
 
 
== Свойства ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>property</code> || <code>TintColorLink: TfgAssetColorLink</code>
 
 
 
|-
 
| <code>property</code> || <code>BackgroundTintColorLink: TfgAssetColorLink</code>
 
 
 
|-
 
| <code>property</code> || <code>Min: Integer</code>
 
Минимальное значение прогресса.
 
|-
 
| <code>property</code> || <code>Max: Integer</code>
 
Максимальное значение прогресса.
 
|-
 
| <code>property</code> || <code>Progress: Integer</code>
 
Текущее значение прогресса.
 
|-
 
| <code>property</code> || <code>TintColor: TAlphaColor</code>
 
Оттенок полоски прогресса.
 
|-
 
| <code>property</code> || <code>TintColorName: TfgAssetName</code>
 
Ресурс цвета оттенка полоски прогресса.
 
|-
 
| <code>property</code> || <code>BackgroundTintColor: TAlphaColor</code>
 
Оттенок заднего фона.
 
|-
 
| <code>property</code> || <code>BackgroundTintColorName: TfgAssetName</code>
 
 
 
|}
 

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

Delphi

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