Expert user tool that copies user data that has a positive
CopyCount from the source object to a destination object.
Generally speaking you don't need to use Copy().
Simply rely on things like the copy constructors to do the right thing.
Namespace:
Rhino.DocObjects.Custom
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public static void Copy(
CommonObject source,
CommonObject destination
)
Public Shared Sub Copy (
source As CommonObject,
destination As CommonObject
)
Parameters
- source
- Type: Rhino.RuntimeCommonObject
A source object for the data. - destination
- Type: Rhino.RuntimeCommonObject
A destination object for the data.
See Also