CImageList::FromHandlePermanent
Retorna um ponteiro para um objeto de CImageList quando dado um identificador para uma lista de imagem.
static CImageList* PASCAL FromHandlePermanent(
HIMAGELIST hImageList
);
Parâmetros
- hImageList
Especifica a lista de imagem.
Valor de retorno
Um ponteiro para um objeto de CImageList se com êxito; se não NULO.
Comentários
Se um objeto de CImageList não está conectado a um identificador, 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