IsInputChar Method (InputTextBox)
In This Topic
Determines whether 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 InputTextBox
Dim charCode As Char
Dim value As Boolean
value = instance.IsInputChar(charCode)
protected override bool IsInputChar(
char
)
Parameters
- charCode
- Character to check
Return Value
true if the character can be handled by the control and not preprocessed; otherwise, false
See Also