IsWindowTopMost
From SCAR Divi Manual
Definition
function IsWindowTopMost(const Wnd: Hwnd): Boolean;
Availability
SCAR Divi 3.35 > Current
Description
Returns true if the window specified by it's handle in Wnd exists and is in a topmost (, not foreground) position on the desktop.
Example
var Wnds: THwndArray; begin Wnds := FindWindowsEx(GetDesktopWindow, 'notepad', '', False, False, True); if Length(Wnds) > 0 then begin WriteLn(IsWindowTopMost(Wnds[0])); SetWindowTopMost(Wnds[0], True); WriteLn(IsWindowTopMost(Wnds[0])); end; end.