Partager via


CStatic::GetEnhMetaFile

Obtient le handle du métafichier amélioré, précédemment définie avec SetEnhMetafile, qui est associé à CStatic.

HENHMETAFILE GetEnhMetaFile( ) const;

Valeur de retour

Un handle vers le métafichier amélioré actuel, ou NULL si aucun métafichier amélioré n'a été défini.

Exemple

CStatic myStatic;

// Create a child enhanced metafile static control.
myStatic.Create(_T("my static"), 
   WS_CHILD|WS_VISIBLE|SS_ENHMETAFILE|SS_CENTERIMAGE, 
   CRect(10,10,150,50), pParentWnd);

// If no image is defined for the static control, define the image  
// to be "myemf.emf." 
if (myStatic.GetEnhMetaFile() == NULL)
   myStatic.SetEnhMetaFile(::GetEnhMetaFile(_T("myemf.emf")));   

Configuration requise

Header: afxwin.h

Voir aussi

Référence

CStatic, classe

Graphique de la hiérarchie

CStatic::SetEnhMetaFile

STM_GETIMAGE