IVsIntelliMouseHandler.DeleteBitmap_(UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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;