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, Int32)

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

[Visual Basic]
Overloads Public Function SendMessage( _
   ByVal msg As Integer, _
   ByVal wParam As Integer, _
   ByVal lParam As Integer _
) As Integer
[C#]
public int SendMessage(
   int msg,
   int wParam,
   int lParam
);
[C++]
public: int SendMessage(
   int msg,
   int wParam,
   int lParam
);
[JScript]
public function SendMessage(
   msg : int,
   wParam : int,
   lParam : int
) : 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