Determines if charCode is an input character that the control wants. This method is called during window message pre-processing to determine whether the given input character should be pre-processed or sent directly to the control. If isInputChar returns true, the given character is sent directly to the control. If isInputChar returns false, the character is pre-processed and only sent to the control if it is not consumed by the pre-processing phase. The pre-processing of a character includes checking whether the character is a mnemonic of another control.
[Visual Basic] Overridable Protected Function IsInputChar( _ ByVal charCode As Char _ ) As Boolean [C#] protected virtual bool IsInputChar( char charCode ); [C++] protected: virtual bool IsInputChar( __wchar_t charCode ); [JScript] protected function IsInputChar( charCode : Char ) : Boolean;
true if character should be sent directly to control, false if character should first be pre-processed.