IVsIntelliMouseHandler.DeleteBitmap_ Method

Deletes the bitmap used for panning with the Intellisense mouse.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

‘선언
Function DeleteBitmap_ ( _
    ByRef lpPanBitmap As UInteger _
) As Integer
‘사용 방법
Dim instance As IVsIntelliMouseHandler
Dim lpPanBitmap As UInteger
Dim returnValue As Integer

returnValue = instance.DeleteBitmap_(lpPanBitmap)
int DeleteBitmap_(
    ref uint lpPanBitmap
)
int DeleteBitmap_(
    [InAttribute] unsigned int% lpPanBitmap
)
abstract DeleteBitmap_ : 
        lpPanBitmap:uint32 byref -> int 
function DeleteBitmap_(
    lpPanBitmap : uint
) : int

Parameters

  • lpPanBitmap
    Type: System.UInt32%
    [in] Pointer to a PANBITMAP structure. For more information, see Remarks.

Return Value

Type: System.Int32
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;

.NET Framework Security

See Also

Reference

IVsIntelliMouseHandler Interface

IVsIntelliMouseHandler Members

Microsoft.VisualStudio.Shell.Interop Namespace