Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide to Clip-4-Win version 3.0 - <b>iswindowvisible()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
IsWindowVisible()
Determine whether a window is considered visible
------------------------------------------------------------------------------

Syntax
IsWindowVisible( <hWnd> )   -->   lVisible

Arguments
<hWnd> is the handle to the window.

Returns
A logical TRUE (.T.) is returned if the window is considered
visible.  Otherwsie, FALSE (.F.) is returned.

Description
A window is considered visible based on the WS_VISIBLE setting
(defined in WINDOWS.CH), even if the window is actually
covered by other windows.  In effect, the test is whether the
window is actually visible or could be made visible if the
user re-arranged the Windows desktop.

Example
if  IsWindowVisible( hWnd )
     // do something
endif


See Also: IsChild() IsIconic() IsWindow() IsWindowEnabled()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson