Difference between revisions of "GetActiveWindow"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> function GetActiveWindow: Hwnd; </source> ==Availability== SCAR Divi 3.36 > Current ==Description== Returns the handle to t...") |
(No difference)
|
Revision as of 12:31, 7 August 2012
Definition
function GetActiveWindow: Hwnd;
Availability
SCAR Divi 3.36 > Current
Description
Returns the handle to the foreground window, which is the window which is currently active.
Example
begin WriteLn(GetWindowClass(GetActiveWindow)); end.