次の方法で共有


CImageList::FromHandlePermanent

ハンドルをイメージ リストに指定されている場合、CImageList オブジェクトへのポインターを返します。

static CImageList* PASCAL FromHandlePermanent(
   HIMAGELIST hImageList 
);

パラメーター

  • hImageList
    イメージ リストを指定します。

戻り値

正常終了した場合はオブジェクトへのポインター CImageList ; それ null

解説

ハンドルへの CImageList のオブジェクトがアタッチされていない場合、null が返されます。

使用例

CImageList* ConvertHandlePermanent(HIMAGELIST hmyImageList)
{
   // Convert the HIMAGELIST to a CImageList*.
   ASSERT(hmyImageList != NULL);
   CImageList* pmyImageList = CImageList::FromHandlePermanent(hmyImageList);
   ASSERT(pmyImageList != NULL);

   return pmyImageList;
}

必要条件

ヘッダー: afxcmn.h

参照

関連項目

CImageList クラス

階層図

CImageList::FromHandle