Bitmap Element

Defines a bitmap. The bitmap is loaded either from a resource or from a file.

<Bitmap guid="guidImages" href="images\MyImage.bmp" usedList="bmp1, bmp2, bmp3" />

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute

Description

guid

Required. GUID of the GUID/ID command identifier.

The guid attribute for a bitmap is not associated with any VSPackage or other command group. It should be unique to the bitmap definition and should not be used for any other purpose.

resID

ID of the GUID/ID command identifier. Either the resID or the href attribute is required.

The resID attribute is an integer resource ID that determines the bitmap strip that is to be loaded during command table merging. When the command table is being loaded, the bitmaps specified by the resource ID will be loaded from the resource of the same module.

usedList

Required if the resID attribute is present. Selects the available images in the bitmap strip.

href

Path to the bitmap. Either the resID or the href attribute is required.

The include path is searched for the indicated image file, which is embedded in the resulting binary. During the command table merge, the image is copied and no additional resource lookup or load is required. If the usedList attribute is not present, all images in the strip are available.

NoteNote
Images may be supplied in one of several formats that include .bmp, .png, and .gif. Earlier versions of the compiler did not support 32-bit bitmap images that had alpha information for partial transparency. The workaround for these versions is to use the .png format.

Condition

Optional. See VSCT XML Schema Conditional Attributes.

Child Elements

None.

Parent Elements

Element

Description

Bitmaps Element

Groups Bitmap elements.

Example

<Bitmap guid="guidWidgetIcons" href="WidgetToolbarIcons_32.bmp" />
<Bitmap guid="guidWidgetIcons2" resID="IDBMP_WIDGETICONS"
  usedList="1, 2, 3, 4"/>

See Also

Other Resources

Visual Studio Command Table (.Vsct) Files