ImageList_GetIconSize

[DllImport("Comctl32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ImageList_GetIconSize(
   IntPtr himl,
   out int cx,
   out int cy
);

Microsoft documentation: Link

Last updated