FlexGrid for WinForms | ComponentOne
C1.Win.FlexGrid Namespace / KeyPressEditEventArgs Class / KeyPressEditEventArgs Constructor
The row index of the cell being edited when the key was pressed.
The column index of the cell being edited when the key was pressed.
The character corresponding to the key pressed.

In This Topic
    KeyPressEditEventArgs Constructor
    In This Topic
    Initializes a new instance of the KeyPressEditEventArgs class.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal row As Integer, _
       ByVal col As Integer, _
       ByVal key As Char _
    )
    public KeyPressEditEventArgs( 
       int row,
       int col,
       char key
    )

    Parameters

    row
    The row index of the cell being edited when the key was pressed.
    col
    The column index of the cell being edited when the key was pressed.
    key
    The character corresponding to the key pressed.
    See Also