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