Description
Creates a copy of the instance of a VGT component. The new component is automatically registered and will be persisted or restored when a scenario is saved or loaded.
Syntax
Parameters
See Also
Example
Create a duplicate.
[C#] |
---|
IAgCrdnPoint point = provider.Points.Factory.Create("OriginalPoint", "description", AgECrdnPointType.eCrdnPointTypeAtTimeInstant);
IAgCrdn duplicate = ((IAgCrdn)point).Duplicate("DuplicatePoint", "description");
|
|
Create a duplicate.
[Visual Basic .NET] |
---|
Dim point As IAgCrdnPoint = provider.Points.Factory.Create("OriginalPoint", "description", AgECrdnPointType.eCrdnPointTypeAtTimeInstant)
Dim duplicate As IAgCrdn = DirectCast(point, IAgCrdn).Duplicate("DuplicatePoint", "description")
|
|