IUIImage interface
Applies to: desktop apps only
The IUIImage interface is implemented by the application and defines the method for retrieving an image to display in the ribbon and context popup UI of the Windows Ribbon framework .
Members
The IUIImage interface inherits from the IUnknown interface. IUIImage also has these types of members:
Methods
The IUIImage interface has these methods.
| Method | Description |
|---|---|
| GetBitmap |
Retrieves a bitmap to display as an icon in the ribbon and context popup UI of the Ribbon framework. |
Requirements
|
Minimum supported client | Windows 7, Windows Vista with SP2 and Platform Update for Windows Vista |
|---|---|
|
Minimum supported server | Windows Server 2008 R2, Windows Server 2008 with SP2 and Platform Update for Windows Server 2008 |
|
Header |
|
|
IDL |
|
|
DLL |
|
See also
Send comments about this topic to Microsoft
Build date: 2/15/2012
Community Content
Arik Poznanski
C# Syntax
// Container for bitmap image
[ComImport]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[Guid("23c8c838-4de6-436b-ab01-5554bb7c30dd")]
public interface IUIImage
{
// Retrieves a bitmap to display as an icon in the ribbon and context popup UI of the Windows Ribbon (Ribbon) framework.
[PreserveSig]
HRESULT GetBitmap(out IntPtr bitmap);
}