Control.PreProcessControlMessage(Message) Method

Definition

Preprocesses keyboard or input messages within the message loop before they are dispatched.

public:
 System::Windows::Forms::PreProcessControlState PreProcessControlMessage(System::Windows::Forms::Message % msg);
public System.Windows.Forms.PreProcessControlState PreProcessControlMessage (ref System.Windows.Forms.Message msg);
member this.PreProcessControlMessage : Message -> System.Windows.Forms.PreProcessControlState
Public Function PreProcessControlMessage (ByRef msg As Message) As PreProcessControlState

Parameters

msg
Message

A Message that represents the message to process.

Returns

One of the PreProcessControlState values, depending on whether PreProcessMessage(Message) is true or false and whether IsInputKey(Keys) or IsInputChar(Char) are true or false.

Remarks

This is the method that is called directly by the message loop of the Application.

Applies to