CImageList::Read
呼叫此函式讀取檔案的一個影像清單的。
BOOL Read(
CArchive* pArchive
);
參數
- pArchive
為影像清單中要讀取的 CArchive 物件的指標。
傳回值
如果不是零,則成功,則為 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);
需求
Header: afxcmn.h