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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 1: Строка 1:
 
* [[ FGX.Application | Вверх к родителю: FGX.Application ]]
 
* [[ FGX.Application | Вверх к родителю: FGX.Application ]]
* [[ FGX.Application.TfgApplication_Methods | Методы ]]
 
* [[ FGX.Application.TfgApplication_Properties | Свойства ]]
 
  
 
Delphi
 
Delphi
  
 
<syntaxhighlight lang="Delphi">TfgApplication = class (TComponent, IInterfaceComponentReference, IInterface)</syntaxhighlight>
 
<syntaxhighlight lang="Delphi">TfgApplication = class (TComponent, IInterfaceComponentReference, IInterface)</syntaxhighlight>
 
== Конструкторы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <code>constructor</code> || <code>Create(AOwner: TComponent)</code>
 
 
|}
 
 
== Методы ==
 
 
{| class="wikitable sortable"
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">Initialize()</syntaxhighlight>
 
Стартовая инициализация.
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">Run()</syntaxhighlight>
 
Запуск приложения.
 
|-
 
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <syntaxhighlight lang="Delphi">CreateForm(const AInstanceClass: TComponentClass; var AReference: )</syntaxhighlight>
 
 
|-
 
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <syntaxhighlight lang="Delphi">OpenURL(const AUrl: string)</syntaxhighlight>
 
Открывает ресурс по указанному урлу в соответствующем приложении.
 
|}
 

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

Delphi

TfgApplication = class (TComponent, IInterfaceComponentReference, IInterface)