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

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

Syntax

Visual Basic (Declaration) 
Public Event EditKeyPress As DbiListControl.EventEditKeyPressHandler
C# 
public event DbiListControl.EventEditKeyPressHandler EditKeyPress

Event Data

The event handler receives an argument of type EditKeyPressEventArgs containing data related to this event. The following EditKeyPressEventArgs 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.
KeyPressEvents The EventArguments for the KeyPress event triggered by the edit control.
NodeItem The dbiNodeItem containing the cell being edited.
Processed Determines if the edit control's KeyPress event has been processed yet.

Remarks

This event will fire twice, once before the edit control's KeyPressed 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.

Requirements

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

See Also