SoNodeCopy Method (Boolean) |
Creates and returns an exact copy of the node.
Namespace: OIV.Inventor.NodesAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 10.3.0.0 (10.3.0.0)
Syntax public virtual SoNode Copy(
bool copyConnections
)
Public Overridable Function Copy (
copyConnections As Boolean
) As SoNode
public:
virtual SoNode^ Copy(
bool copyConnections
)
abstract Copy :
copyConnections : bool -> SoNode
override Copy :
copyConnections : bool -> SoNode
Parameters
- copyConnections
- Type: SystemBoolean
Return Value
Type:
SoNodeRemarks If the node is a group, it copies the children as well. If copyConnections is true (it is false by default), any connections to (but not from) fields of the node are copied, as well. Note that multiple references to a node under the node to be copied will result in multiple references to the copy of that node.
See Also