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

CellValueChangedEventArgs(TreeListColumn, TreeListNode, Object, Boolean) Constructor

Creates a new CellValueChangedEventArgs class instance.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

public CellValueChangedEventArgs(
    TreeListColumn column,
    TreeListNode node,
    object val,
    bool changedByUser = false
)

Parameters

Name Type Description
column TreeListColumn

A TreeListColumn object that specifies the column that contains the changed cell. This value is assigned to the CellEventArgs.Column property.

node TreeListNode

A TreeListNode object that specifies the node that contains the changed cell. This value is assigned to the NodeEventArgs.Node property.

val Object

An object that specifies the new cell value. This value is assigned to the CellValueChangedEventArgs.Value property.

Optional Parameters

Name Type Default Description
changedByUser Boolean False

A Boolean value that specifies whether the user changed the value in the editor, or the value is changed in code. This value is assigned to the CellValueChangedEventArgs.ChangedByUser property.

Remarks

CellValueChangedEventArgs class instances are passed to TreeList.CellValueChanged event handlers.

See Also