次の方法で共有


CWindow::IsWindowEnabled

ウィンドウが入力が有効かどうかを判定します。

BOOL IsWindowEnabled( ) const throw();

解説

Windows SDKの IsWindowEnabled を参照してください。

使用例

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

必要条件

Header: atlwin.h

参照

関連項目

CWindow クラス

CWindow::EnableWindow

CWindow::IsWindowVisible

CWindow::IsWindowUnicode