Gets or sets a value indicating whether the form will receive key events before the event is passed to the control that has focus.
Documentation for this section has not yet been entered.
This property is not relevant for this class.
When this property is set to true, the form will receive all Control.KeyPress, Control.KeyDown, and Control.KeyUp events. After the form's event handlers have completed processing the keystroke, the keystroke is then assigned to the control with focus.
You can use this property to process all keystrokes in your application and either handle the keystroke or call the appropriate control to handle the keystroke. For example, when an application uses function keys, you might want to process the keystrokes at the form level rather than writing code for each control that might receive keystroke events.
If a form has no visible or enabled controls, it automatically receives all keyboard events.