dbicList Send comments on this topic.
EditInputKey Event
See Also 
dbicBase Assembly > Dbi.WinControl Namespace > DbiListControl Class : EditInputKey Event

Event fired when a key is pressed inside the TextBox or ComboBox when editing a cell.

Syntax

Visual Basic (Declaration) 
Public Event EditInputKey As DbiListControl.EventEditInputKeyHandler
C# 
public event DbiListControl.EventEditInputKeyHandler EditInputKey

Event Data

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

PropertyDescription
ColumnIndex The zero-based index of the dbiColumnItem where the edit control resides.
ColumnItem The dbiColumnItem where the edit control resides.
Handled A flag the developer can set to inform the control that the operation has been handled.
KeyData The KeyData that triggered the event.
NodeItem The dbiNodeItem that contains the cell being edited.

Remarks

This event can be used to test and override the behavior of keys as they are pressed.

Requirements

Target Platforms: Current Windows operating system with .NET 8.

See Also