CImageList::Remove
调用此函数从图像移除图像列表对象。
BOOL Remove(
int nImage
);
参数
- nImage
移除图像的从零开始的索引。
返回值
非零,如果成功;否则为0。
备注
按照 nImage 的所有项目现在向下移动一个位置。例如,因此,如果图像列表包含两个项目,删除的第一项会导致剩余的项目现在第一个位置。项目的nImage=0在第一个位置。
示例
// Remove every other image from the image list.
for (int i = 0; i < m_myImageList.GetImageCount(); i++)
{
m_myImageList.Remove(i);
}
要求
Header: afxcmn.h