Skip to main content
A newer version of this page is available. .

TreeListCellValueEventArgs(TreeListNode, ColumnBase, Object) Constructor

Initializes a new instance of the TreeListCellValueEventArgs class.

Namespace: DevExpress.Xpf.Grid.TreeList

Assembly: DevExpress.Xpf.Grid.v18.2.dll

Declaration

public TreeListCellValueEventArgs(
    TreeListNode node,
    ColumnBase column,
    object value
)

Parameters

Name Type Description
node TreeListNode

A TreeListNode object that represents the node. This value is assigned to the TreeListNodeEventArgs.Node property.

column ColumnBase

A ColumnBase descendant that represents the column. This value is assigned to the TreeListCellValueEventArgs.Column property.

value Object

A object that represents the cell’s new value. This value is assigned to the TreeListCellValueEventArgs.Value property.

See Also