Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / QueryEditorInputCharEventArgs Class / QueryEditorInputCharEventArgs Constructor
The System.Windows.Forms.Control used to edit the cell's content.
The Xceed.Grid.Cell to edit.
The character to test.
true if the character should be sent directly to the editor and not preprocessed; false otherwise.


In This Topic
    QueryEditorInputCharEventArgs Constructor
    In This Topic
    Initializes a new instance of the QueryEditorInputCharEventArgs class specifying the cell to be edited, the control used to edit the cell's content, and the input character to process.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal control As Control, _
       ByVal cell As Cell, _
       ByVal charCode As Char, _
       ByVal isInputChar As Boolean _
    )
    'Usage
     
    Dim control As Control
    Dim cell As Cell
    Dim charCode As Char
    Dim isInputChar As Boolean
     
    Dim instance As New QueryEditorInputCharEventArgs(control, cell, charCode, isInputChar)
    public QueryEditorInputCharEventArgs( 
       Control control,
       Cell cell,
       char charCode,
       bool isInputChar
    )

    Parameters

    control
    The System.Windows.Forms.Control used to edit the cell's content.
    cell
    The Xceed.Grid.Cell to edit.
    charCode
    The character to test.
    isInputChar
    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