Solid Edge FrameworkSupport Type Library
Move Method
Specifies the x coordinate of the origin.
Specifies the y coordinate of the origin.
Specifies the x coordinate of the destination.
Specifies the y coordinate of the destination.
Description
Moves the referenced object.
Syntax
Visual Basic
Public Sub Move( _
   ByVal XFrom As Double, _
   ByVal YFrom As Double, _
   ByVal XTo As Double, _
   ByVal YTo As Double _
) 
Parameters
XFrom
Specifies the x coordinate of the origin.
YFrom
Specifies the y coordinate of the origin.
XTo
Specifies the x coordinate of the destination.
YTo
Specifies the y coordinate of the destination.
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objEllpArcs As SolidEdgeFrameworkSupport.EllipticalArcs2d
    Dim objEllpArc1 As SolidEdgeFrameworkSupport.EllipticalArc2d
    Dim dblStrt As Double
    Dim dblFin As Double
    Dim x As Double, y As Double
    Dim sDumpStatus As String    ' Used for temporary storage of datadump return string
    ' 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    'Create an Elliptical Arcs2d collection object
    Set objEllpArcs = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:= _
                                                          objDoc.RefPlanes(1)).EllipticalArcs2d
    'Create an EllipticalArc object
    dblStrt = 180 * PI / 180
    dblFin = 230 * PI / 180
    Set objEllpArc1 = objEllpArcs.AddByCenter(xCenter:=0, yCenter:=0, _
                                              xMajoraxis:=0.03, yMajoraxis:=0, Ratio:=0.5, _
                                              Orientation:=0, StartAngle:=dblStrt, EndAngle:=dblFin)
    ' Move the EllipticalArc2d object
    Call objEllpArc1.Move(XFrom:=0, YFrom:=0, XTo:=0.1, YTo:=0)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objEllpArcs = Nothing
    Set objEllpArc1 = Nothing
End Sub
See Also

EllipticalArc2d Object  | EllipticalArc2d Members

Send comments on this topic.