Gets a System.Drawing.Bitmap of the large icon that is associated with an item and specified by an identifier or a Scalable Vector Graphics (SVG) stream parameter. The identifier can be the string conversion of an enumeration that is associated with an item (such as RibbonFormattingTab.RibbonItem.TXITEM_Paste). The size of the returned large icon depends on the resolution that is specified by the dpi parameter or the resolution of a specific control. The source of the large image should be based on a grid of 32x32 Pixel and a resolution of 96 dpi.

GetLargeIcon(String, Float)

public static System.Drawing.Bitmap GetLargeIcon(string identifier, float dpi);
Public Shared Function GetLargeIcon(ByVal identifier As String, ByVal dpi As Single) As System.Drawing.Bitmap

GetLargeIcon(String, Float, Windows.Forms.ResourceProvider.ImageSourceSettings)

public static System.Drawing.Bitmap GetLargeIcon(string identifier, float dpi, Windows.Forms.ResourceProvider.ImageSourceSettings settings);
Public Shared Function GetLargeIcon(ByVal identifier As String, ByVal dpi As Single, ByVal settings As Windows.Forms.ResourceProvider.ImageSourceSettings) As System.Drawing.Bitmap

GetLargeIcon(System.IO.Stream, Float)

public static System.Drawing.Bitmap GetLargeIcon(System.IO.Stream stream, float dpi);
Public Shared Function GetLargeIcon(ByVal stream As System.IO.Stream, ByVal dpi As Single) As System.Drawing.Bitmap

GetLargeIcon(String, System.Windows.Forms.Control)

public static System.Drawing.Bitmap GetLargeIcon(string identifier, System.Windows.Forms.Control control);
Public Shared Function GetLargeIcon(ByVal identifier As String, ByVal control As System.Windows.Forms.Control) As System.Drawing.Bitmap

GetLargeIcon(String, System.Windows.Forms.Control, Windows.Forms.ResourceProvider.ImageSourceSettings)

public static System.Drawing.Bitmap GetLargeIcon(string identifier, System.Windows.Forms.Control control, Windows.Forms.ResourceProvider.ImageSourceSettings settings);
Public Shared Function GetLargeIcon(ByVal identifier As String, ByVal control As System.Windows.Forms.Control, ByVal settings As Windows.Forms.ResourceProvider.ImageSourceSettings) As System.Drawing.Bitmap

GetLargeIcon(System.IO.Stream, System.Windows.Forms.Control)

public static System.Drawing.Bitmap GetLargeIcon(System.IO.Stream stream, System.Windows.Forms.Control control);
Public Shared Function GetLargeIcon(ByVal stream As System.IO.Stream, ByVal control As System.Windows.Forms.Control) As System.Drawing.Bitmap

Parameters

Parameter Description
identifier The identifier of the item that is associated with the requested large icon.
dpi Specifies the resolution that is used to create the requested large icon.
settings Specifies an ImageSourceSettings object with additional settings for receiving the large image.
control Specifies the control from where the resolution is determined that is used to create the requested large icon.
stream Specifies the Scalable Vector Graphics (SVG) stream that is used to create the requested large icon.

Return Value

A bitmap of the large icon that is assigned to the item. If no large icon is associated with the item, the method returns null.

Remarks

An exception is thrown if the handle of the specified control parameter is not created.