IVsIntelliMouseHandler.DeleteBitmap_(UInt32) Method

Definition

Deletes the bitmap used for panning with the Intellisense mouse.

public:
 int DeleteBitmap_(System::UInt32 % lpPanBitmap);
int DeleteBitmap_(unsigned int & lpPanBitmap);
public int DeleteBitmap_ (ref uint lpPanBitmap);
abstract member DeleteBitmap_ : uint32 -> int
Public Function DeleteBitmap_ (ByRef lpPanBitmap As UInteger) As Integer

Parameters

lpPanBitmap
UInt32

[in] Pointer to a PANBITMAP structure. For more information, see Remarks.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsIntelliMouseHandler::DeleteBitmap_(  
   [in] DWORD* lpPanBitmap  
);  

PANBITMAP Structure

[C++]

typedef struct tagPANBITMAP  
{  
   HWND hwnd;  
   HDC hdcSrc;  
   HBITMAP hbmSave;  
   HBITMAP hbmLoaded;  
   HBITMAP hbmMask;  
   HBITMAP hbmColor;  
   int x;  
   int y;  
   int cx;  
   int cy;  
} PANBITMAP, FAR *LPPANBITMAP;  

Applies to