CWindow::IsWindowEnabled

Determina se la finestra è attivo per l'input.

BOOL IsWindowEnabled( ) const throw();

Note

Vedere IsWindowEnabled in Windows SDK.

Esempio

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::IsWindowEnabled() to verify if the window is enabled 
//for receiving input

CWindow myWindow;
myWindow.Attach(hWnd);
BOOL bEnabled = myWindow.IsWindowEnabled();

Requisiti

Header: atlwin.h

Vedere anche

Riferimenti

Classe di CWindow

CWindow::EnableWindow

CWindow::IsWindowVisible

CWindow::IsWindowUnicode