Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / QueryEditorActivationKeyEventArgs Class / QueryEditorActivationKeyEventArgs Constructor
The Xceed.Grid.Cell whose content is to be edited by the editor.
One of the System.Windows.Forms.Keys values.
true if the editor is activated by the key; false otherwise.


In This Topic
    QueryEditorActivationKeyEventArgs Constructor
    In This Topic
    Initializes a new instance of the QueryEditorActivationKeyEventArgs class specifying the cell whose content is to be edited as well as the key which may or may not activate the cell's editor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal cell As Cell, _
       ByVal keyData As Keys, _
       ByVal isActivationKey As Boolean _
    )
    'Usage
     
    Dim cell As Cell
    Dim keyData As Keys
    Dim isActivationKey As Boolean
     
    Dim instance As New QueryEditorActivationKeyEventArgs(cell, keyData, isActivationKey)
    public QueryEditorActivationKeyEventArgs( 
       Cell cell,
       Keys keyData,
       bool isActivationKey
    )

    Parameters

    cell
    The Xceed.Grid.Cell whose content is to be edited by the editor.
    keyData
    One of the System.Windows.Forms.Keys values.
    isActivationKey
    true if the editor is activated by the 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