Solid Edge FrameworkSupport Type Library
Duplicate Method
Specifies the distance in the x direction from the original that the copy of the referenced object is to be placed.
Specifies the distance in the y direction from the original that the copy of the referenced object is to be placed.
Description
Copies the referenced object to a specified location, creating a new instance of the object with the same property values as the original.
Syntax
Visual Basic
Public Function Duplicate( _
   Optional ByVal XDistance As Variant, _
   Optional ByVal YDistance As Variant _
) As Object
Parameters
XDistance
Specifies the distance in the x direction from the original that the copy of the referenced object is to be placed.
YDistance
Specifies the distance in the y direction from the original that the copy of the referenced object is to be placed.
Remarks
The referenced object is copied to the new location relative to the original (source) location. The distance is the difference from the object's original location to the XDistance and YDistance values. The new object is returned.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objPoints As solidedgeframeworksupport.Points2d
    Dim objPoint1 As solidedgeframeworksupport.Point2d
    Dim objPoint2 As solidedgeframeworksupport.Point2d
    ' Report errors
    Const PI = 3.14159265358979
    ' Create/get the application with specific settings
    On Error Resume Next
    Set objApp = GetObject(, "SolidEdge.Application")
    If Err Then
        Err.Clear
        Set objApp = CreateObject("SolidEdge.Application")
        Set objDoc = objApp.Documents.Add("SolidEdge.DraftDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'getting the Active Sheet object
    Set objSheet = objDoc.ActiveSheet
    'create Points collection
    Set objPoints = objSheet.Points2d
    'create Point
    Set objPoint1 = objPoints.Add(x:=0.25, y:=0.25)
    'duplicate Point
    Set objPoint2 = objPoint1.Duplicate(xdistance:=0.1, ydistance:=0.1)


    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objPoints = Nothing
    Set objPoint1 = Nothing
    Set objPoint2 = Nothing
End Sub
See Also

Point2d Object  | Point2d Members