CPen::operator HPEN
Obtient le handle attaché Windows GDI de l'objet d' CPen .
operator HPEN( ) const;
Valeur de retour
En cas de réussite, un handle vers l'objet Windows GDI représenté par l'objet d' CPen ; sinon NULL.
Notes
Cet opérateur est un opérateur de cast, qui prend en charge l'utilisation directe d'un objet d' HPEN .
Pour plus d'informations sur l'utilisation des objets graphiques, consultez l'article objets graphiques dans Kit de développement logiciel Windows.
Exemple
// Create a solid red pen of width 2.
CPen myPen(PS_SOLID, 2, RGB(255,0,0));
// Get the handle of the pen object.
HPEN hPen = (HPEN) myPen;
Configuration requise
Header: afxwin.h