IVsSplitter.HandleMessage(UInt32, IntPtr, IntPtr) Method

Definition

Handles mouse-oriented message.

public:
 int HandleMessage(System::UInt32 iMsg, IntPtr wParam, IntPtr lParam);
public int HandleMessage (uint iMsg, IntPtr wParam, IntPtr lParam);
abstract member HandleMessage : uint32 * nativeint * nativeint -> int
Public Function HandleMessage (iMsg As UInteger, wParam As IntPtr, lParam As IntPtr) As Integer

Parameters

iMsg
UInt32

[in] The ID of the message.

wParam
IntPtr

nativeint

[in] Information about the message.

lParam
IntPtr

nativeint

[in] Information needed by the message.

Returns

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  
);  

Applies to