Handles mouse-oriented message.
Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (in Microsoft.VisualStudio.TextManager.Interop.dll)
Syntax
'Declaration
Function HandleMessage ( _
    iMsg As UInteger, _
    wParam As IntPtr, _
    lParam As IntPtr _
) As Integer
int HandleMessage(
    uint iMsg,
    IntPtr wParam,
    IntPtr lParam
)
int HandleMessage(
    [InAttribute] unsigned int iMsg, 
    [InAttribute] IntPtr wParam, 
    [InAttribute] IntPtr lParam
)
abstract HandleMessage : 
        iMsg:uint32 * 
        wParam:IntPtr * 
        lParam:IntPtr -> int
function HandleMessage(
    iMsg : uint, 
    wParam : IntPtr, 
    lParam : IntPtr
) : int
Parameters
iMsg
Type: System.UInt32[in] The ID of the message.
wParam
Type: System.IntPtr[in] Information about the message.
lParam
Type: System.IntPtr[in] Information needed by the message.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
The parameters correspond to the fields in the Message structure.
COM Signature
From textmgr.idl:
HRESULT IVsSplitter::HandleMessage(
   [in] UINT iMsg,
   [in] WPARAM wParam,
   [in] LPARAM lParam
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.