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

Материал из FGX Native Докуметации
Перейти к навигации Перейти к поиску
(summary)
(summary)
Строка 15: Строка 15:
 
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create()</code>
 
| <syntaxhighlight lang="Delphi">constructor</syntaxhighlight> || <code>Create()</code>
  
 +
|}
 +
 +
== Методы ==
 +
 +
{| class="wikitable sortable"
 +
|-
 +
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <code lang="Delphi">UpdateCurrentToolbar()</code>
 +
 +
|-
 +
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <code lang="Delphi">Show(const AForm: [[FGX.Forms.TfgCustomForm|TfgCustomForm]])</code>
 +
Выводит на экран форму '' AForm '' .
 +
|-
 +
| <syntaxhighlight lang="Delphi">procedure</syntaxhighlight> || <code lang="Delphi">Hide(const AForm: [[FGX.Forms.TfgCustomForm|TfgCustomForm]])</code>
 +
Скрывает форму '' AForm '' с экрана.
 +
|-
 +
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">PreviousTopMost(): [[FGX.Forms.TfgCustomForm|TfgCustomForm]]</code>
 +
Возвращает форму, располагающуюся сразу позади '' TopMost '' .
 +
|-
 +
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">PreviousTo(const AForm: [[FGX.Forms.TfgCustomForm|TfgCustomForm]]): [[FGX.Forms.TfgCustomForm|TfgCustomForm]]</code>
 +
Возвращает форму, располагающуюся сразу позади '' AForm '' .
 +
|-
 +
| <syntaxhighlight lang="Delphi">function</syntaxhighlight> || <code lang="Delphi">TopMost(): [[FGX.Forms.TfgCustomForm|TfgCustomForm]]</code>
 +
Возвращает видимую форму, которая находится поверх всех остальных.
 
|}
 
|}

Версия 04:51, 10 июня 2019

Delphi

TfgFormManager = class (TfgNaturalInterfacedObject, IInterface)

Описание

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

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

constructor
Create()

Методы

procedure
UpdateCurrentToolbar()
procedure
Show(const AForm: TfgCustomForm)

Выводит на экран форму AForm .

procedure
Hide(const AForm: TfgCustomForm)

Скрывает форму AForm с экрана.

function
PreviousTopMost(): TfgCustomForm

Возвращает форму, располагающуюся сразу позади TopMost .

function
PreviousTo(const AForm: TfgCustomForm): TfgCustomForm

Возвращает форму, располагающуюся сразу позади AForm .

function
TopMost(): TfgCustomForm

Возвращает видимую форму, которая находится поверх всех остальных.