Difference between revisions of "ActivateWindow"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure ActivateWindow(const Wnd: Hwnd); </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Brings a win...") |
|||
| Line 1: | Line 1: | ||
==Definition== | ==Definition== | ||
<source lang="scar" lines="false"> | <source lang="scar" lines="false"> | ||
| − | + | function GetDesktopWindow: Hwnd; | |
</source> | </source> | ||
| Line 8: | Line 8: | ||
==Description== | ==Description== | ||
| − | + | Returns the handle to the desktop window. | |
==Example== | ==Example== | ||
<source lang="scar"> | <source lang="scar"> | ||
| − | |||
| − | |||
| − | |||
begin | begin | ||
| − | + | WriteLn(GetWindowClass(GetDesktopWindow)); | |
| − | |||
| − | |||
end. | end. | ||
</source> | </source> | ||
| + | |||
| + | ==See Also== | ||
| + | *[[GetShellWindow]] | ||
| + | *[[GetActiveWindow]] | ||
| + | *[[GetParentWindow]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
[[Category:Window Functions]] | [[Category:Window Functions]] | ||
Revision as of 12:28, 7 August 2012
Definition
function GetDesktopWindow: Hwnd;
Availability
SCAR Divi 3.35 > Current
Description
Returns the handle to the desktop window.
Example
begin WriteLn(GetWindowClass(GetDesktopWindow)); end.