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

Event fired after the editing of a cell has completed.

Syntax

Visual Basic (Declaration) 
Public Event AfterCellEdit As DbiListControl.EventAfterCellEditHandler
C# 
public event DbiListControl.EventAfterCellEditHandler AfterCellEdit

Event Data

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

PropertyDescription
ColumnIndex The index of the column where the edit occurred.
ColumnItem The dbiColumnItem where the cell is located
Key The Key code and modifiers that were pressed to end the edit session
NodeItem The dbiNodeItem that contains the cell that was edited.
Text The text that was assigned back to the cell.

Requirements

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

See Also