TreeList.CopyNode(TreeListNode, TreeListNode, Boolean) Method
Copies the specified node to the specified node’s child collection. This method does not update the data source and is intended for use in unbound mode.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public TreeListNode CopyNode(
TreeListNode sourceNode,
TreeListNode destinationNode,
bool cloneChildren
)
#Parameters
Name | Type | Description |
---|---|---|
source |
Tree |
A Tree |
destination |
Tree |
A Tree |
clone |
Boolean | true if child nodes of the node being copied must be cloned; otherwise false. |
#Returns
Type | Description |
---|---|
Tree |
A Tree |
#Remarks
Use the CopyNode
method to create a copy of the specified node and add it to the collection of child nodes (Nodes) of another node.
The CopyNode
method does not copy a node to another TreeList control.
Use the CopyNodes method to copy multiple nodes.
Note
The Copy
method is intended for use in unbound mode. In bound mode, use the Append