CBrush::operator HBRUSH
Utilisez cet opérateur pour obtenir le handle attaché Windows GDI de l'objet d' CBrush .
operator HBRUSH( ) const;
Valeur de retour
En cas de réussite, un handle vers l'objet Windows GDI représenté par l'objet d' CBrush ; sinon NULL.
Notes
Cet opérateur est un opérateur de cast, qui prend en charge l'utilisation directe d'un objet d' HBRUSH .
Pour plus d'informations sur l'utilisation des objets graphiques, consultez l' objets graphiques dans Kit de développement logiciel Windows.
Exemple
RECT rc = { 50, 50, 200, 200 };
Rectangle(pDC->GetSafeHdc(), rc.left, rc.top, rc.right, rc.bottom);
// The Win32 call to FillRect requires an HBRUSH.
// The HBRUSH operator casts the CBrush object
// to the required type.
CBrush brush;
brush.CreateSysColorBrush(COLOR_BTNFACE);
FillRect(pDC->GetSafeHdc(), &rc, (HBRUSH)brush);
Configuration requise
Header: afxwin.h