Partilhar via


CWindow::IsWindowEnabled

Determina se a janela estiver ativada para a entrada.

BOOL IsWindowEnabled( ) const throw();

Comentários

Consulte IsWindowEnabled em Windows SDK.

Exemplo

//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

Cabeçalho: atlwin.h

Consulte também

Referência

Classe de CWindow

CWindow::EnableWindow

CWindow::IsWindowVisible

CWindow::IsWindowUnicode