FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / C1FlexGrid Class / KeyPressEdit Event

In This Topic
    KeyPressEdit Event (C1FlexGrid)
    In This Topic
    Fires in edit mode, when the user presses a character key.
    Syntax
    'Declaration
     
    
    Public Event KeyPressEdit As KeyPressEditEventHandler
    public event KeyPressEditEventHandler KeyPressEdit
    Event Data

    The event handler receives an argument of type KeyPressEditEventArgs containing data related to this event. The following KeyPressEditEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the column index of the cell being edited when the key was pressed.  
    Gets or sets a value indicating whether the event was handled and should be ignored by the control.  
    Gets the character corresponding to the key pressed.  
    Gets the row index of the cell being edited when the key was pressed.  
    Remarks

    The C1FlexGridBase.KeyPressEdit event corresponds to the System.Windows.Forms.Control.KeyPress event, except it fires when the grid is in edit mode (in this case, the control that receives the key is the editor, not the grid itself).

    The editor has three modes: text, drop-down combo, or drop-down list. The mode used is determined by the C1FlexGridBase.ComboList properties in the grid and column objects.

    While editing with the text editor or with a drop-down combo, you may set or retrieve the contents of the editor by retrieving the editor control with the C1FlexGridBase.Editor property and casting it to the proper type.

    See Also