Skip to content

Latest commit

 

History

History
51 lines (36 loc) · 931 Bytes

File metadata and controls

51 lines (36 loc) · 931 Bytes

Home

Function name : ImageList_GetImageInfo

Group: Windows Controls - Library: comctl32


Retrieves information about an image in the image list.


Code examples:

System Image List Viewer

Declaration:

BOOL ImageList_GetImageInfo(
	HIMAGELIST himl,
	int i,
	IMAGEINFO *pImageInfo
);  

FoxPro declaration:

DECLARE INTEGER ImageList_GetImageInfo IN comctl32;
	INTEGER himl,;
	INTEGER i,;
	STRING @pImageInfo  

Parameters:

himl A handle to the image list. i The index of the image.

pImageInfo A pointer to an IMAGEINFO structure that receives information about the image.


Return value:

Returns nonzero if successful, or zero otherwise.