CWindow::IsWindowVisible

Bestimmt den Sichtbarkeitszustand des Fensters.

BOOL IsWindowVisible( ) const throw();

Hinweise

Siehe IsWindowVisible in Windows SDK.

Beispiel

//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(hWnd);
BOOL bVisible = myWindow.IsWindowVisible();

Anforderungen

Header: atlwin.h

Siehe auch

Referenz

CWindow-Klasse

CWindow::IsWindow

CWindow::IsWindowUnicode