FGX.Application.TfgApplication: различия между версиями
Перейти к навигации
Перейти к поиску
Admin (обсуждение | вклад) (summary) |
Admin (обсуждение | вклад) (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> | ||
+ | Открывает ресурс по указанному урлу в соответствующем приложении. | ||
|} | |} |
Версия 04:42, 10 июня 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
Открывает ресурс по указанному урлу в соответствующем приложении. |