 | CustomComboBoxPreProcessMessage Method |
Preprocesses keyboard or input messages within the message loop before they are dispatched.
Namespace:
Microsoft.Win32.TaskScheduler
Assembly:
Microsoft.Win32.TaskSchedulerEditor (in Microsoft.Win32.TaskSchedulerEditor.dll) Version: 2.10.1
Syntaxpublic override bool PreProcessMessage(
ref Message m
)
Public Overrides Function PreProcessMessage (
ByRef m As Message
) As Boolean
public:
virtual bool PreProcessMessage(
Message% m
) override
Request Example
View SourceParameters
- m
- Type: System.Windows.FormsMessage
A Message, passed by reference, that represents the message to process. The possible values are WM_KEYDOWN, WM_SYSKEYDOWN, WM_CHAR, and WM_SYSCHAR.
Return Value
Type:
Booleantrue if the message was processed by the control; otherwise,
false.
See Also