NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ContainerControl.ProcessDialogChar

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;

Parameters

charCode
character to pre-process.

Return Value

true to consume the character, false to allow further processing.

See Also

ContainerControl Class | ContainerControl Members | System.WinForms Namespace