NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Control.SendMessage (Int32, Int32, Object)

Sends a Win32 message to this control. If the control does not yet have a handle, it will be created.

[Visual Basic]
Overloads Protected Function SendMessage( _
   ByVal msg As Integer, _
   ByVal wParam As Integer, _
   ByVal lParam As Object _
) As Integer
[C#]
protected int SendMessage(
   int msg,
   int wParam,
   object lParam
);
[C++]
protected: int SendMessage(
   int msg,
   int wParam,
   Object* lParam
);
[JScript]
protected function SendMessage(
   msg : int,
   wParam : int,
   lParam : Object
) : int;

Parameters

msg
Message to send
wParam
wParam to send
lParam
lParam to send

Return Value

value returned by the control.

See Also

Control Class | Control Members | System.WinForms Namespace | Control.SendMessage Overload List