CellEventArgs.Column Property
In This Article
Gets a column to which the cell processed by an event belongs.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public TreeListColumn Column { get; }
#Property Value
Type | Description |
---|---|
Tree |
A Tree |
#Remarks
The CellEventArgs class extends the NodeEventArgs class with the Column property. Thus, the events using CellEventArgs objects as parameters allow you to identify the cell being processed. This can be performed by reading the NodeEventArgs.Node and Column property values.
See Also