Partager via


CWindow::SetRedraw

Définit ou supprime l'indicateur redessiner en envoyant un message de WM_SETREDRAW dans la fenêtre.

void SetRedraw( 
   BOOL bRedraw = TRUE  
) throw();

Paramètres

  • bRedraw
    [in] spécifie l'état de l'indicateur redessiner. Si TRUE (valeur par défaut), l'indicateur redessiner a la valeur ; si FALSE, la balise est supprimé.

Notes

Appel SetRedraw pour autoriser des modifications apportées à redessiner ou pour empêcher les modifications d'être redessiné.

Exemple

//The following example attaches an HWND to the CWindow object and  
//calls CWindow::SetRedraw() to set and reset the redraw flag

CWindow myWindow;
myWindow.Attach(hWnd);
myWindow.SetRedraw();      //sets the redraw flag to TRUE 
// 
//
myWindow.SetRedraw(FALSE); //sets the redraw flag to FALSE

Configuration requise

Header: atlwin.h

Voir aussi

Référence

CWindow, classe