Skip to main content

CustomizeNewNodeFromOuterDataEventArgs(TreeListNode, TreeListNodes, Dictionary<String, Object>) Constructor

Initializes a new instance of the CustomizeNewNodeFromOuterDataEventArgs class.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

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

Declaration

public CustomizeNewNodeFromOuterDataEventArgs(
    TreeListNode sourceNode,
    TreeListNodes destinationNodes,
    Dictionary<string, object> newValue
)

Parameters

Name Type Description
sourceNode TreeListNode

The node (from another TreeListColumn control) being dragged. This value is assigned to the CustomizeNewNodeFromOuterDataEventArgs.SourceNode property.

destinationNodes TreeListNodes

The collection of sibling nodes relative to which the sourceNode is dropped. This value is assigned to the CustomizeNewNodeFromOuterDataEventArgs.DestinationNodes property.

newValue Dictionary<String, Object>

The dictionary that contains data to initialize a new node. This value is assigned to the CustomizeNewNodeFromOuterDataEventArgs.NewData property.

See Also