Partager via


CStatic::GetIcon

Obtient le handle de l'icône, précédemment définie avec SetIcon, qui est associée à CStatic.

HICON GetIcon( ) const;

Valeur de retour

Un handle vers l'icône actuelle, ou NULL si aucune icône n'a été définie.

Exemple

CStatic myStatic;

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

// If no icon is defined for the static control, define the icon  
// to the system error icon. 
if (myStatic.GetIcon() == NULL)
   myStatic.SetIcon(::LoadIcon(NULL, IDI_ERROR));   

Configuration requise

Header: afxwin.h

Voir aussi

Référence

CStatic, classe

Graphique de la hiérarchie

CStatic::SetIcon

STM_GETICON

Icons