Difference between revisions of "GetDesktopWindow"

From SCAR Divi Manual
Jump to: navigation, search
(Created page with "==Definition== <source lang="scar" lines="false"> function GetDesktopWindow: Hwnd; </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Returns the handle to ...")
 
 
Line 21: Line 21:
 
*[[GetActiveWindow]]
 
*[[GetActiveWindow]]
 
*[[GetParentWindow]]
 
*[[GetParentWindow]]
 +
*[[GetOuterWindow]]
  
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Window Functions]]
 
[[Category:Window Functions]]

Latest revision as of 13:35, 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.

See Also