Partager via


CWindow::RedrawWindow

Met à jour un rectangle ou une région spécifiée dans la zone cliente.

BOOL RedrawWindow( 
   LPCRECT lpRectUpdate = NULL, 
   HRGN hRgnUpdate = NULL, 
   UINT flags = RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE  
); throw()

Notes

Consultez RedrawWindow dans Kit de développement logiciel Windows.

Exemple

//The following example attaches an HWND to the CWindow object and  
//calls CWindow::RedrawWindow() to update the entire window using the  
//default arguments

CWindow myWindow;
myWindow.Attach(hWnd);
BOOL bRedrawn = myWindow.RedrawWindow();

Configuration requise

Header: atlwin.h

Voir aussi

Référence

CWindow, classe

CWindow::UpdateWindow

RECT