ComponentOne FlexPivot for WinForms
C1.Win.FlexPivot.8 Assembly / C1.Win.FlexPivot Namespace / C1FlexPivotGrid Class / KeyDownEdit Event

In This Topic
    KeyDownEdit Event (C1FlexPivotGrid)
    In This Topic
    Syntax
    'Declaration
     
    Public Event KeyDownEdit As C1.Win.FlexGrid.KeyEditEventHandler
    public event C1.Win.FlexGrid.KeyEditEventHandler KeyDownEdit
    Event Data

    The event handler receives an argument of type C1.Win.FlexGrid.KeyEditEventArgs containing data related to this event. The following KeyEditEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets a value indicating whether the ALT key was pressed.  
    Gets the column index of the cell being edited when the key was pressed.  
    Gets a value indicating whether the CTRL key was pressed.  
    Gets or sets a value indicating whether the event was handled and should be ignored by the control.  
    Gets the key code for the event, which will be one of the System.Windows.Forms.Keys values.  
    Gets the key code for the key that was pressed, combined with modifier flags that indicate which combination of CTRL, SHIFT, and ALT keys were pressed at the same time.  
    Gets the integer representation of the C1.Win.FlexGrid.KeyEditEventArgs.KeyData property.  
    Gets the modifier flags, as defined in Keys. This indicates which combination of modifier keys (CTRL, SHIFT, and ALT) were pressed.  
    Gets the row index of the cell being edited when the key was pressed.  
    Gets a value indicating whether the SHIFT key was pressed.  
    See Also