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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 1: Строка 1:
 
* [[ FGX.ProgressBar | Вверх к родителю: FGX.ProgressBar ]]
 
* [[ FGX.ProgressBar | Вверх к родителю: FGX.ProgressBar ]]
* [[ FGX.ProgressBar.TfgCustomProgressBar_Methods | Методы ]]
 
* [[ FGX.ProgressBar.TfgCustomProgressBar_Properties | Свойства ]]
 
  
 
Delphi
 
Delphi
  
<syntaxhighlight lang="Delphi">TfgCustomProgressBar = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</syntaxhighlight>
+
<code lang="Delphi">TfgCustomProgressBar = class (TfgControl, IFGXTapSupported, IFGXNotificationObserver, IFGXNotificationObservable)</code>
 
 
== Конструкторы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>constructor</code> || <code>Create(AOwner: TComponent)</code>
 
 
 
|}
 
 
 
== Методы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">IncProgress(const AStep: Integer)</syntaxhighlight>
 
Увеличивает текущее значение '' 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>
 
 
 
|}
 
 
 
== Константы ==
 
 
 
{| class="wikitable sortable"
 
|-
 
| <code>const</code> || <code>DefaultMin: Integer</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultMax: Integer</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultProgress: Integer</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultBackgroundTintColor: TAlphaColor</code>
 
 
 
|-
 
| <code>const</code> || <code>DefaultTintColor: TAlphaColor</code>
 
 
 
|}
 

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

Delphi

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