Skip to main content

CellEventArgs(TreeListColumn, TreeListNode) Constructor

Creates an instance of the CellEventArgs class.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public CellEventArgs(
    TreeListColumn column,
    TreeListNode node
)

Parameters

Name Type Description
column TreeListColumn

A TreeListColumn object representing the column to which the processed cell belongs. This value is assigned to the CellEventArgs.Column property.

node TreeListNode

A TreeListNode object representing the node to which the processed cell belongs. This value is assigned to the NodeEventArgs.Node property.

Remarks

The CellEventArgs class is instantiated automatically when an event requiring a cell as the parameter is raised. The column and node parameters of the constructor specify the column and node to which the processed cell belongs.

See Also