9 references to IMAGEINFO
System.Windows.Forms (2)
System\Windows\Forms\Controls\ImageList\ImageList.cs (2)
221
if (PInvoke.ImageList.GetImageInfo(new HandleRef<HIMAGELIST>(this, _nativeImageList.HIMAGELIST), 0, out
IMAGEINFO
imageInfo))
616
if (PInvoke.ImageList.GetImageInfo(this, index, out
IMAGEINFO
imageInfo))
System.Windows.Forms.Primitives (6)
Windows.Win32.PInvoke.COMCTL32.dll.g.cs (4)
220
/// <inheritdoc cref="ImageList_GetImageInfo(winmdroot.UI.Controls.HIMAGELIST, int, winmdroot.UI.Controls.
IMAGEINFO
*)"/>
222
internal static unsafe winmdroot.Foundation.BOOL ImageList_GetImageInfo(winmdroot.UI.Controls.HIMAGELIST himl, int i, out winmdroot.UI.Controls.
IMAGEINFO
pImageInfo)
224
fixed (winmdroot.UI.Controls.
IMAGEINFO
* pImageInfoLocal = &pImageInfo)
250
internal static extern unsafe winmdroot.Foundation.BOOL ImageList_GetImageInfo(winmdroot.UI.Controls.HIMAGELIST himl, int i, winmdroot.UI.Controls.
IMAGEINFO
* pImageInfo);
Windows\Win32\PInvoke.ImageList.cs (2)
76
/// <inheritdoc cref="ImageList_GetImageInfo(HIMAGELIST, int,
IMAGEINFO
*)"/>
77
public static bool GetImageInfo<T>(T himl, int i, out
IMAGEINFO
pImageInfo) where T : IHandle<HIMAGELIST>
System.Windows.Forms.Tests (1)
SerializableTypesTests.cs (1)
99
Assert.True(PInvoke.ImageList.GetImageInfo(new HandleRef<HIMAGELIST>(this, nativeImageList.HIMAGELIST), 0, out
IMAGEINFO
imageInfo));