|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| Yes
| Import Library
| comctl32.lib
| Header File
| commctrl.h
| Unicode
| No
| Platform Notes
| None
|
|
|
ImageList_SetOverlayImage
The ImageList_SetOverlayImage function adds the index of an image to the list of images to be used as
overlay masks. Up to four indices can be added to the list.
BOOL ImageList_SetOverlayImage(
HIMAGELIST himl,
|
| int iImage,
|
| int iOverlay
|
| );
|
|
Parameters
himl
Handle to the image list.
iImage
Image to use as an overlay mask.
iOverlay
One-based index of the overlay mask.
Return Values
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
Remarks
An overlay mask is an image drawn transparently over another image. You draw
an overlay mask over an image by using the ImageList_Draw or ImageList_DrawEx function with the index of the overlay mask. The index must be specified by
using the INDEXTOOVERLAYMASK macro.
See Also
ImageList_Draw, ImageList_DrawEx, INDEXTOOVERLAYMASK
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|