Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objLines As SolidEdgeFrameworkSupport.Lines2d
    Dim objLine1 As SolidEdgeFrameworkSupport.Line2d
    Dim objL1 As SolidEdgeFrameworkSupport.Line2d
    Dim objL2 As SolidEdgeFrameworkSupport.Line2d
    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 a Lines collection object
    Set objLines = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:= _
                                                       objDoc.RefPlanes(1)).Lines2d
    'Create a Line object
    Set objLine1 = objLines.AddBy2Points(x1:=-0.1, y1:=0, x2:=0.2, y2:=0)
    ' Create 2 more Line objects which intersect the above Line object
    Set objL1 = objLines.AddBy2Points(x1:=0, y1:=-0.1, x2:=0, y2:=0.1)
    Set objL2 = objLines.AddBy2Points(x1:=0.1, y1:=-0.1, x2:=0.1, y2:=0.1)
    ' Trim the Line
    Call objLine1.Trim(x:=0.15, y:=0, CutObj1:=objL2)
    'Reset the end point
    Call objLine1.Delete
    Set objLine1 = objLines.AddBy2Points(x1:=-0.1, y1:=0, x2:=0.2, y2:=0)
    ' Trim the Line again
    Call objLine1.Trim(x:=0, y:=0.05, CutObj1:=objL1, CutObj2:=objL2)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objLines = Nothing
    Set objLine1 = Nothing
    Set objL1 = Nothing
    Set objL2 = Nothing
End Sub