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.CallWndProc

Dispatch the method to this window's wndProc directly.

[Visual Basic]
Public Function CallWndProc( _
   ByVal msg As Integer, _
   ByVal wParam As Integer, _
   ByVal lParam As Integer _
) As Integer
[C#]
public int CallWndProc(
   int msg,
   int wParam,
   int lParam
);
[C++]
public: int CallWndProc(
   int msg,
   int wParam,
   int lParam
);
[JScript]
public function CallWndProc(
   msg : int,
   wParam : int,
   lParam : int
) : int;

Parameters

msg
The message to send
wParam
the wParam of the message
lParam
the lParam of the message

See Also

Control Class | Control Members | System.WinForms Namespace