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

TreeListNode.Clone() Method

Returns a copy of this node.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public virtual object Clone()

Returns

Type Description
Object

A TreeListNode object representing this node’s copy.

Remarks

The cloned node is not added to the TreeList control’s hierarchical structure. You can use the TreeListNodes.Add method to add the specified node to the nodes collection. Child nodes collection of a node can be accessed via its TreeListNode.Nodes property.

Use the TreeList.CopyNode method to create a node’s copy and add it to the child collection of the specified node.

See Also