CImageList::FromHandlePermanent
Retorna um ponteiro para um CImageList objeto quando recebe um identificador para uma lista de imagem.
static CImageList* PASCAL FromHandlePermanent(
HIMAGELIST hImageList
);
Parâmetros
- hImageList
Especifica a lista de imagens.
Valor de retorno
Um ponteiro para um CImageList objeto se bem-sucedida; caso contrário NULO.
Comentários
If a CImageList objeto não está associado a alça NULO será retornado.
Exemplo
CImageList* ConvertHandlePermanent(HIMAGELIST hmyImageList)
{
// Convert the HIMAGELIST to a CImageList*.
ASSERT(hmyImageList != NULL);
CImageList* pmyImageList = CImageList::FromHandlePermanent(hmyImageList);
ASSERT(pmyImageList != NULL);
return pmyImageList;
}
Requisitos
Cabeçalho: afxcmn.h