imagelist_geticonsize (comctl32)
Last changed: anonymous

.
Summary
Retrieves the dimensions of images in an image list. All images in an image list have the same dimensions.

C# Signature:

[DllImport("comctl32.dll", SetLastError=true)]
static extern bool ImageList_GetIconSize(IntPtr himl, out int cx, out int cy);

VB Signature:

Declare Function ImageList_GetIconSize Lib "comctl32.dll" (TODO) As TODO

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

        int iconWidth;
        int iconHeight;

        ImageList_GetIconSize(himl,out iconWidth,out iconHeight);

Documentation