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!

Message.Create

Creates a new message object.

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

Parameters

hWnd
The window handle for the message.
msg
The message ID.
wParam
The message wParam.
lParam
The message lParam.

Return Value

a Message object.

See Also

Message Structure | Message Members | System.WinForms Namespace