'Declaration Protected Friend Function IsInputChar( _ ByVal control As Control, _ ByVal cell As Cell, _ ByVal charCode As Char _ ) As Boolean
'Usage Dim instance As CellEditorManager Dim control As Control Dim cell As Cell Dim charCode As Char Dim value As Boolean value = instance.IsInputChar(control, cell, charCode)
Parameters
- control
- The System.Windows.Forms.Control that will be used to edit the content of the cell.
- cell
- The Xceed.Grid.Cell whose content is to be edited by the control.
- charCode
- The character to test.The character to test.
Return Value
true if the character should be sent directly to the editor and not preprocessed; false otherwise.true if the character should be sent directly to the control and not preprocessed; false otherwise.