次の方法で共有


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

必要条件

**ヘッダー:**atlwin.h

参照

参照

CWindow クラス

CWindow::EnableWindow

CWindow::IsWindowVisible

CWindow::IsWindowUnicode

その他の技術情報

CWindow のメンバー