Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / CellEditorManager Class / IsInputCharCore Method
The System.Windows.Forms.Control that will be used to edit the content of the cell.
The Xceed.Grid.Cell whose content is to be edited by the control.
The character to test.


In This Topic
    IsInputCharCore Method
    In This Topic
    Determines if a character is an input character that the editor recognizes.
    Syntax
    'Declaration
     
    Protected Overridable Function IsInputCharCore( _
       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.IsInputCharCore(control, cell, charCode)
    protected virtual bool IsInputCharCore( 
       Control control,
       Cell cell,
       char 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.

    Return Value

    true if the character should be sent directly to the editor and not preprocessed; false otherwise.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also