ComponentDispatcher.RaiseThreadMessage(MSG) Method

Definition

Indicates that a new message is available for possible handling.

public:
 static bool RaiseThreadMessage(System::Windows::Interop::MSG % msg);
[System.Security.SecurityCritical]
public static bool RaiseThreadMessage (ref System.Windows.Interop.MSG msg);
public static bool RaiseThreadMessage (ref System.Windows.Interop.MSG msg);
[<System.Security.SecurityCritical>]
static member RaiseThreadMessage : MSG -> bool
static member RaiseThreadMessage : MSG -> bool
Public Shared Function RaiseThreadMessage (ByRef msg As MSG) As Boolean

Parameters

msg
MSG

The message and its associated data.

Returns

true, if one of the modules listening to the message loop processed the message. The owner of the message loop should ignore the message. false, if the message was not processed. In this case, the owner of the message pump should call the Win32 function TranslateMessage followed by DispatchMessage.

Attributes

Remarks

The owner of the message pump should call this method for every keyboard message.

Applies to

See also