TreeList.RowCellClick Event
Fires when a cell is clicked.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
Declaration
Event Data
The RowCellClick event's data class is DevExpress.XtraTreeList.RowCellClickEventArgs.
Remarks
The RowCellClick event fires after the TreeList.RowClick event when a cell within a row is clicked. The event provides the following arguments:
- Column—the column containing the clicked cell (see TreeListColumn);
- Node—the row containing the clicked cell (see TreeListNode);
- CellValue—the value of the clicked cell (see TreeList.GetRowCellValue);
- HitInfo—the information about visual elements located at the click point (see TreeList.CalcHitInfo).
Note
This event does not fire if:
- cell editing is enabled (see TreeListOptionsBehavior.Editable), and
- the cell editor is invoked before the mouse button is released (see TreeListOptionsBehavior.EditorShowMode).
See Also