'Declaration Public Event KeyPressEdit As C1.Win.FlexGrid.KeyPressEditEventHandler
public event C1.Win.FlexGrid.KeyPressEditEventHandler KeyPressEdit
Event Data
The event handler receives an argument of type C1.Win.FlexGrid.KeyPressEditEventArgs containing data related to this event. The following KeyPressEditEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Col | Gets the column index of the cell being edited when the key was pressed. |
Handled | Gets or sets a value indicating whether the event was handled and should be ignored by the control. |
KeyChar | Gets the character corresponding to the key pressed. |
Row | Gets the row index of the cell being edited when the key was pressed. |
See Also