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

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

Версия 17:52, 11 июня 2019

Delphi

TfgApplication = class (TComponent, IInterfaceComponentReference, IInterface)

Описание

Описание отсутствует.

Конструкторы

constructor
Create(AOwner: TComponent)

Методы

procedure
Initialize()

Стартовая инициализация.

procedure
Run()

Запуск приложения.

procedure
CreateForm(const AInstanceClass: TComponentClass; var AReference: [[]])
function
OpenURL(const AUrl: string): Boolean

Открывает ресурс по указанному урлу в соответствующем приложении.