| Visual Basic (Declaration) | |
|---|---|
Public Event EditKeyUp As DbiListControl.EventEditKeyUpHandler | |
| C# | |
|---|---|
public event DbiListControl.EventEditKeyUpHandler EditKeyUp | |
The event handler receives an argument of type EditKeyUpEventArgs containing data related to this event. The following EditKeyUpEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| ColumnIndex | The zero-based index of the dbiColumnItem where the edit control resides. |
| ColumnItem | The dbiColumnItem where the edit control resides. |
| KeyUpEvents | The EventArguments for the KeyUp event triggered by the edit control. |
| NodeItem | The dbiNodeItem containing the cell being edited. |
| Processed | Determines if the edit control's KeyUp event has been processed yet. |
This event will fire twice, once before the edit control's KeyDown event (Processed = false) and then again after (Processed = true).
This event will only fire if either the TextBox or ComboBox is being used to edit the cell.