IVsIntelliMouseHandler.LoadBitmap_ Method

Load the bitmap to display for panning with the Intellisense mouse. Once loaded, you then draw the bitmap with DrawBitmap_.

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

Syntax

'宣告
Function LoadBitmap_ ( _
    hwnd As IntPtr, _
    idbmp As UInteger, _
    idcur As UInteger, _
    ptOrg As POINT, _
    ByRef lpPanBitmap As UInteger _
) As Integer
'用途
Dim instance As IVsIntelliMouseHandler
Dim hwnd As IntPtr
Dim idbmp As UInteger
Dim idcur As UInteger
Dim ptOrg As POINT
Dim lpPanBitmap As UInteger
Dim returnValue As Integer

returnValue = instance.LoadBitmap_(hwnd, _
    idbmp, idcur, ptOrg, lpPanBitmap)
int LoadBitmap_(
    IntPtr hwnd,
    uint idbmp,
    uint idcur,
    POINT ptOrg,
    ref uint lpPanBitmap
)
int LoadBitmap_(
    [InAttribute] IntPtr hwnd, 
    [InAttribute] unsigned int idbmp, 
    [InAttribute] unsigned int idcur, 
    [InAttribute] POINT ptOrg, 
    [InAttribute] unsigned int% lpPanBitmap
)
abstract LoadBitmap_ : 
        hwnd:IntPtr * 
        idbmp:uint32 * 
        idcur:uint32 * 
        ptOrg:POINT * 
        lpPanBitmap:uint32 byref -> int 
function LoadBitmap_(
    hwnd : IntPtr, 
    idbmp : uint, 
    idcur : uint, 
    ptOrg : POINT, 
    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::LoadBitmap_(
   [in] HWND hwnd, 
   [in] UINT idbmp, 
   [in] UINT idcur, 
   [in] POINT ptOrg, 
   [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