 | CAEXObjectExtensionsCopy Method |
Copies the CAEX object and assigns the name to the created copy.
Namespace: Aml.Engine.CAEX.ExtensionsAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic static CAEXObject Copy(
this CAEXObject caexObject,
string name
)
<ExtensionAttribute>
Public Shared Function Copy (
caexObject As CAEXObject,
name As String
) As CAEXObject
public:
[ExtensionAttribute]
static CAEXObject^ Copy(
CAEXObject^ caexObject,
String^ name
)
Parameters
- caexObject CAEXObject
- The CAEX object to be copied.
- name String
- The new name.
Return Value
CAEXObjectThe created copy
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
CAEXObject. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also