Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid.Editors Namespace / QueryEditorActivationCharEventArgs Class / QueryEditorActivationCharEventArgs Constructor
The Xceed.Grid.Cell whose content is to be edited by the editor.
The character to test.
true if the editor is activated by the char; false otherwise.


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

    Parameters

    cell
    The Xceed.Grid.Cell whose content is to be edited by the editor.
    charCode
    The character to test.
    isActivationChar
    true if the editor is activated by the char; 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