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

TreeList.CopyNodes(IEnumerable<TreeListNode>, TreeListNode, Boolean, Boolean, Int32) Method

Copies the specified nodes to the specified node’s child collection.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v19.1.dll

Declaration

public List<TreeListNode> CopyNodes(
    IEnumerable<TreeListNode> sourceNodes,
    TreeListNode destinationNode,
    bool cloneChildren,
    bool modifySource,
    int position
)

Parameters

Name Type Description
sourceNodes IEnumerable<TreeListNode>

A collection of TreeListNode objects representing the nodes to be copied.

destinationNode TreeListNode

A TreeListNode object representing the node to whose child collection the node is copied.

cloneChildren Boolean

true, if child nodes of the node being copied must be cloned; otherwise, false.

modifySource Boolean

true, if the destination node’s key field value is assigned to the parent field of the source node and all its copies; otherwise, false.

position Int32

An Int32 value that specifies the position that the moved node occupies within the destination collection.

Returns

Type Description
List<TreeListNode>

A TreeListNode object representing the copy of the specified node.

Remarks

Use the CopyNode method to create a copy of the specified node. The copy is added to the child collection of the destination node. Note that a node cannot be copied to another TreeList control. Also note that children of the copied node are not cloned if the node is copied to itself or to its own child even if the cloneChildren parameter is set to true.

See Also