TreeList.RowCellClick Event
In This Article
Fires when a cell is clicked.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#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 Tree
List ), andOptions Behavior. Editable - the cell editor is invoked before the mouse button is released (see Tree
List ).Options Behavior. Editor Show Mode
See Also