Control.ReflectMessage(IntPtr, Message) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reflects the specified message to the control that is bound to the specified handle.
protected:
static bool ReflectMessage(IntPtr hWnd, System::Windows::Forms::Message % m);
protected static bool ReflectMessage (IntPtr hWnd, ref System.Windows.Forms.Message m);
static member ReflectMessage : nativeint * Message -> bool
Protected Shared Function ReflectMessage (hWnd As IntPtr, ByRef m As Message) As Boolean
Parameters
Returns
true
if the message was reflected; otherwise, false
.
Remarks
The ReflectMessage method is an infrastructure method and typically should not be called from your code.
If the hWnd
parameter does not represent a valid control, the ReflectMessage method returns false
.
Because Windows messages are returned to the top-level window, the ReflectMessage method is used to propagate the return message to the control that sent the message.