This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Determines if a character is an input character that the control recognizes.
Syntax
'Declaration
Protected Overrides Function IsInputChar( _
ByVal As Char _
) As Boolean
'Usage
Dim instance As EditBase
Dim charCode As Char
Dim value As Boolean
value = instance.IsInputChar(charCode)
protected override bool IsInputChar(
char
)
Parameters
- charCode
- The character to test.
Return Value
true if the character should be sent directly to the control and not preprocessed; otherwise, false.
See Also