TreeListCellValueChangedEventArgs(TreeListNode, ColumnBase, Object, Object) Constructor
Initializes a new instance of the TreeListCellValueChangedEventArgs class.
Namespace: DevExpress.Xpf.Grid.TreeList
Assembly: DevExpress.Xpf.Grid.v24.1.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
public TreeListCellValueChangedEventArgs(
TreeListNode node,
ColumnBase column,
object value,
object oldValue
)
Parameters
Name | Type | Description |
---|---|---|
node | TreeListNode | A TreeListNode object that specifies the node. This value is assigned to the TreeListNodeEventArgs.Node property. |
column | ColumnBase | A ColumnBase descendant that specifies the column. This value is assigned to the TreeListCellValueEventArgs.Column property. |
value | Object | A object that is the cell’s new value. This value is assigned to the TreeListCellValueEventArgs.Value property. |
oldValue | Object | A object that represents the cell’s previous value. This value is assigned to the TreeListCellValueChangedEventArgs.OldValue property. |
See Also