Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / QueryEditorInputKeyEventArgs Class / QueryEditorInputKeyEventArgs Constructor
The System.Windows.Forms.Control used to edit the cell's content.
The Xceed.Grid.Cell to edit.
One of the System.Windows.Forms.Keys values.
true if the specified key is a regular input key; false otherwise.


In This Topic
    QueryEditorInputKeyEventArgs 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 key to process.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal control As Control, _
       ByVal cell As Cell, _
       ByVal keyData As Keys, _
       ByVal isInputKey As Boolean _
    )
    'Usage
     
    Dim control As Control
    Dim cell As Cell
    Dim keyData As Keys
    Dim isInputKey As Boolean
     
    Dim instance As New QueryEditorInputKeyEventArgs(control, cell, keyData, isInputKey)
    public QueryEditorInputKeyEventArgs( 
       Control control,
       Cell cell,
       Keys keyData,
       bool isInputKey
    )

    Parameters

    control
    The System.Windows.Forms.Control used to edit the cell's content.
    cell
    The Xceed.Grid.Cell to edit.
    keyData
    One of the System.Windows.Forms.Keys values.
    isInputKey
    true if the specified key is a regular input key; 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