BOOL IsWindowVisible( ) const;
See IsWindowVisible in the Win32 SDK.
Remarks
Determines the window's visibility state.
Example
//The following example attaches an HWND to the CWindow object and
//calls CWindow::IsWindowVisible() to determine the visibility state
//of the window
CWindow myWindow;
myWindow.Attach(hWndFoo);
BOOL bVisible = myWindow.IsWindowVisible();
CWindow Overview | Class Members
See Also CWindow::IsWindow, CWindow::IsWindowUnicode