次の方法で共有


CWindow::Invalidate

クライアント領域全体を無効にします。

BOOL Invalidate(
   BOOL bErase = TRUE 
) throw();

解説

Windows SDK の「InvalidateRect」を参照してください。

InvalidateRect Win32 関数に RECT のパラメーターとして NULL を渡します。

使用例

//The following example attaches an HWND to the CWindow object and 
//calls CWindow::Invalidate() to invalidate the entire client area

CWindow myWindow;
myWindow.Attach(hWnd);
myWindow.Invalidate();

必要条件

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

参照

参照

CWindow クラス

CWindow::InvalidateRect

CWindow::InvalidateRgn

CWindow::ValidateRect

CWindow::ValidateRgn

その他の技術情報

CWindow のメンバー