Compartir a través de


CWindow::IsWindowEnabled

determina si la ventana está habilitada para la entrada.

BOOL IsWindowEnabled( ) const throw();

Comentarios

Vea IsWindowEnabled en Windows SDK.

Ejemplo

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

Requisitos

encabezado: atlwin.h

Vea también

Referencia

CWindow Class

CWindow::EnableWindow

CWindow::IsWindowVisible

CWindow::IsWindowUnicode