Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Interfaces, prefix the name with the module name and a period.
IUIImage (Interfaces)
.
C# Definition:
// Produces containers for bitmap images
[ComImport]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[Guid("18aba7f3-4c1c-4ba2-bf6c-f5c3326fa816")]
public interface IUIImageFromBitmap
{
[PreserveSig]
HRESULT CreateImage(IntPtr /* HBITMAP */ bitmap, UI_Ownership options, [Out(), MarshalAs(UnmanagedType.Interface)] out IUIImage image);
}
Notes:
None.
Click to read this page
5/16/2017 4:12:44 AM - anonymous
IUIImageFromBitmap is a factory interface implemented by the Windows Ribbon (Ribbon) framework that defines the method for creating an IUIImage object.