Processes a dialog character. Overrides Control.processDialogChar(). This method calls the processMnemonic() method to check if the character is a mnemonic for one of the controls on the form. If processMnemonic() does not consume the character, then base.processDialogChar() is called.
[Visual Basic] Overrides Protected Function ProcessDialogChar( _ ByVal charCode As Char _ ) As Boolean [C#] protected override bool ProcessDialogChar( char charCode ); [C++] protected: override bool ProcessDialogChar( __wchar_t charCode ); [JScript] protected override function ProcessDialogChar( charCode : Char ) : Boolean;
true to consume the character, false to allow further processing.
ContainerControl Class | ContainerControl Members | System.WinForms Namespace