FGX.Assets.BitmapSet.TfgAssetBitmapSet: различия между версиями

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
(Метка: замена)
Строка 1: Строка 1:
* [[ FGX.Assets.BitmapSet | Вверх к родителю: FGX.Assets.BitmapSet ]]
+
* [[ FGX.Assets.TfgAsset | Вверх к родителю: TfgAsset ]]
  
 
Delphi
 
Delphi
  
 
<syntaxhighlight lang="Delphi">TfgAssetBitmapSet = class (TfgAsset)</syntaxhighlight>
 
<syntaxhighlight lang="Delphi">TfgAssetBitmapSet = class (TfgAsset)</syntaxhighlight>
 
== Описание ==
 
 
Описание отсутствует.
 
 
== Конструкторы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create()</code>
 
 
|}
 
 
== Методы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <code lang="Delphi">Add(const ABitmapInfo: [[FGX.Assets.BitmapSet.TfgBitmapInfo|TfgBitmapInfo]])</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <code lang="Delphi">AddBitmap(const ABitmap: [[FGX.Canvas.TfgBitmap|TfgBitmap]]; const AScale: [[Single]])</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">Contains(const AScale: [[Single]]): [[Boolean]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <code lang="Delphi">Remove(const AScale: [[Single]])</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <code lang="Delphi">Clear()</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">GetBitmap(): [[FGX.Canvas.TfgBitmap|TfgBitmap]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">GetBitmap(const AScale: [[Single]]): [[FGX.Canvas.TfgBitmap|TfgBitmap]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">GetBitmapInfo(): [[FGX.Assets.BitmapSet.TfgBitmapInfo|TfgBitmapInfo]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">GetBitmapInfo(const AScale: [[Single]]): [[FGX.Assets.BitmapSet.TfgBitmapInfo|TfgBitmapInfo]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">FindBitmap(out ABitmap: [[FGX.Canvas.TfgBitmap|TfgBitmap]]): [[Boolean]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">FindBitmap(const AScale: [[Single]]; out ABitmap: [[FGX.Canvas.TfgBitmap|TfgBitmap]]): [[Boolean]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">FindBitmapInfo(out ABitmapInfo: [[FGX.Assets.BitmapSet.TfgBitmapInfo|TfgBitmapInfo]]): [[Boolean]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">FindBitmapInfo(const AScale: [[Single]]; out ABitmapInfo: [[FGX.Assets.BitmapSet.TfgBitmapInfo|TfgBitmapInfo]]): [[Boolean]]</code>
 
 
|}
 
 
== Свойства ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>BitmapInfos: [[TArray<FGX.Assets.BitmapSet.TfgBitmapInfo>]]</code>
 
 
|-
 
| <syntaxhighlight lang="Delphi">property</syntaxhighlight> || <code>Bitmaps[const AScale]: [[FGX.Canvas.TfgBitmap|TfgBitmap]]</code>
 
 
|}
 
 
== Константы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">const</syntaxhighlight> || <code>AssetType: [[string]]</code>
 
 
|}
 

Версия 23:10, 11 июня 2019

Delphi

TfgAssetBitmapSet = class (TfgAsset)