ImageList_ReplaceIcon
This function replaces an image with an icon.
int WINAPI ImageList_ReplaceIcon(
HIMAGELIST himl,
int i,
HICON hicon
);
Parameters
- himl
[in] Handle to the image list. - i
[in] Index of the image to replace. If i is –1, the function appends the image to the end of the list. - hicon
[in] Handle to the icon that contains the bitmap and mask for the new image.
Return Values
The index of the image indicates success. –1 indicates failure.
Remarks
Because the system does not save hicon, you can destroy it after the function returns if the icon was created by the CreateIcon function. You do not need to destroy hicon if it was loaded by the LoadIcon function; the system automatically frees an icon resource when it is no longer needed.
You can only use the ImageList_ReplaceIcon function with icons, not cursors.
Requirements
OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.
Link Library: Commctrl.lib, Imgctl.lib.
See Also
Last updated on Wednesday, April 13, 2005
© 2005 Microsoft Corporation. All rights reserved.