GetWindowClass

From SCAR Divi Manual
Revision as of 21:12, 7 August 2012 by Freddy (talk | contribs) (Created page with "==Definition== <source lang="scar" lines="false"> function GetWindowClass(const Wnd: Hwnd): string; </source> ==Availability== SCAR Divi 3.35 > Current ==Description== Retur...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Definition

function GetWindowClass(const Wnd: Hwnd): string;

Availability

SCAR Divi 3.35 > Current

Description

Returns the class name of a window specified in Wnd. If the given window doesn't exist, an empty string is returned.

Example

begin
  WriteLn(GetWindowClass(GetShellWindow));
end.

Output:

Progman

See Also