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

请参见

参考

CImageList选件类

层次结构图

CImageList::Write