CStatic::GetIcon

Obtém o identificador do ícone do, anteriormente conjunto com conjunto Ícone, que é associado a CStatic.

HICON GetIcon( ) const;

Valor de retorno

Um identificador para o ícone corrente, ou NULO se nenhum ícone tiver sido definido.

Exemplo

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));   

Requisitos

Cabeçalho: afxwin.h

Consulte também

Referência

Classe CStatic

Gráfico de hierarquia

CStatic::SetIcon

STM_GETICON

Icons

Outros recursos

CStatic membros