Condividi tramite


CWindow::IsWindowVisible

Determina lo stato di visibilità della finestra.

BOOL IsWindowVisible( ) const throw();

Note

Vedere IsWindowVisible in Windows SDK.

Esempio

//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();

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow

CWindow::IsWindow

CWindow::IsWindowUnicode