Event fired before a cell is placed into an editable state.
Syntax
Event Data
The event handler receives an argument of type BeforeCellEditEventArgs containing data related to this event. The following BeforeCellEditEventArgs properties provide information specific to this event.
| Property | Description |
|---|
| AllowEdit | Determines if the edit is allowed |
| ColumnIndex | The zero-based index of the column where the cell exists. |
| ColumnItem | The dbiColumnItem where the cell exists. |
| ComboBox | The ComboBox that will be used to edit values in the cell. |
| Height | The height of the cell to edit. |
| NodeItem | The dbiNodeItem that contains the cell to edit. |
| Text | The current text of the cell. |
| TextBox | The TextBox that will be used to edit values in the cell. |
| Width | The width of the cell to edit. |
| X | The X coordinate of the cell to edit. |
| Y | The Y coordinate of the cell to edit. |
Requirements
Target Platforms: Current Windows operating system with .NET 8.
See Also