Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Control.ReflectMessage(IntPtr, Message) Method

Definition

Namespace:
System.Windows.Forms
Assembly:
System.Windows.Forms.dll
Source:
Control.cs
Source:
Control.cs
Source:
Control.cs
Source:
Control.cs
Source:
Control.cs

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

hWnd
IntPtr

nativeint

An IntPtr representing the handle of the control to reflect the message to.

m
Message

A Message representing the Windows message to reflect.

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.

Applies to

See also


Feedback

Was this page helpful?