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

Reflects the specified message to the control that is bound to hWnd.

[Visual Basic]
Protected Shared Function ReflectMessage( _
   ByVal hWnd As Integer, _
   ByRef m As Message _
) As Boolean
[C#]
protected static bool ReflectMessage(
   int hWnd,
   ref Message m
);
[C++]
protected: static bool ReflectMessage(
   int hWnd,
   Message** m
);
[JScript]
protected static function ReflectMessage(
   hWnd : int,
   m : Message
) : Boolean;

Parameters

hWnd
Handle to reflect the message to.
m
Win32 message to reflect

Return Value

true if the message was reflected.

See Also

Control Class | Control Members | System.WinForms Namespace