CImageList::Read
アーカイブからのイメージ リストを読み取るために、この関数を呼び出します。
BOOL Read(
CArchive* pArchive
);
パラメーター
- pArchive
イメージ リストを読み込む CArchive オブジェクトへのポインター。
戻り値
正常終了した場合は 0 以外を返します。それ以外の場合は 0 を返します。
使用例
// Open the archive to load the image list from.
CFile myFile(_T("myfile.data"), CFile::modeRead);
CArchive ar(&myFile, CArchive::load);
CImageList myImgList;
// Load the image list from the archive.
myImgList.Read(&ar);
必要条件
ヘッダー: afxcmn.h