IVsImageButton Interface
Visual Studio 2015
Draws an image on a button created by your VSPackage.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
| Name | Description | |
|---|---|---|
![]() | Draw(VSDRAWITEMSTRUCT[], Int32) | Draws an ImageButton for your VSPackage. |
This interface is implemented by the environment. The IVsImageButton interface displays a clickable image on a button in your VSPackage. A button with an image can appear as a standard button, a glyph, or breakpoint. Your VSPackage must have created the button with the BS_OWNERDRAW style.
Notes to Implementers:
Implement this interface to draw a graphical image on a buttoncreated in your VSPackage.
Notes to Callers:
Create a button with the BS_OWNERDRAW style, then call the IVsImageButton.Draw method with a properly initialized pDrawItemStruct parameter to draw the graphical image on the button.
Show:
