ActionsPane.PreProcessMessage(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.
Preprocesses keyboard or input messages within the message loop before they are dispatched.
public:
bool PreProcessMessage(System::Windows::Forms::Message % msg);
public bool PreProcessMessage (ref System.Windows.Forms.Message msg);
abstract member PreProcessMessage : Message -> bool
Public Function PreProcessMessage (ByRef msg As Message) As Boolean
Parameters
- msg
- Message
A Message, passed by reference, that represents the message to process. The possible values are WM_KEYDOWN, WM_SYSKEYDOWN, WM_CHAR, and WM_SYSCHAR.
Returns
true
if the message was processed by the actions pane; otherwise, false
.
Remarks
This method provides the same functionality as the System.Windows.Forms.Control.PreProcessMessage method. For more information about using this method, see System.Windows.Forms.Control.PreProcessMessage.