[DllImport("comctl32.dll", SetLastError=true)]
static extern bool ImageList_GetIconSize(IntPtr himl, out int cx, out int cy);
Declare Function ImageList_GetIconSize Lib "comctl32.dll" (TODO) As TODO
<DllImport("comctl32.dll", SetLastError := True)> _
Private Shared Function ImageList_GetIconSize(himl As IntPtr, ByRef cx As Integer, ByRef cy As Integer) As Boolean
End Function
None.
Do you know one? Please contribute it!
None.
Please add some!
int iconWidth;
int iconHeight;
ImageList_GetIconSize(himl,out iconWidth,out iconHeight);