CImageList::Write
アーカイブへのイメージ リスト オブジェクトを作成するには、この関数を呼び出します。
BOOL Write(
CArchive* pArchive
);
パラメーター
- pArchive
イメージ リストが格納されている CArchive オブジェクトへのポインター。
戻り値
正常終了した場合は 0 以外を返します。それ以外の場合は 0 を返します。
使用例
// Open the archive to store the image list in.
CFile myFile(_T("myfile.data"), CFile::modeCreate | CFile::modeWrite);
CArchive ar(&myFile, CArchive::store);
// Store the image list in the archive.
m_myImageList.Write(&ar);
必要条件
ヘッダー: afxcmn.h