Solid Edge FrameworkSupport Type Library
Relationships Property
Description
Returns a collection of objects that are related to the referenced graphic object.
Property type
Read-only property
Syntax
Visual Basic
Public Property Relationships As Relationships2d
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFrameWork.Application
    Dim objDoc As SolidEdgeDraft.DraftDocument
    Dim objSheet As SolidEdgeDraft.Sheet
    Dim objCurves As solidedgeframeworksupport.Curves2d
    Dim objCurve1 As solidedgeframeworksupport.Curve2d
    Dim objCurveRelationships As solidedgeframeworksupport.Relationships2d
    Dim dblPoint(1 To 8) As Double
    Dim objLines As Object
    Dim objLine1 As Object
    Dim objRelation As Object
    ' 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 Curves collection
    Set objCurves = objSheet.Curves2d
    'Define points
    dblPoint(1) = 0.15
    dblPoint(2) = 0.15
    dblPoint(3) = 0.25
    dblPoint(4) = 0.15
    dblPoint(5) = 0.25
    dblPoint(6) = 0.25
    dblPoint(7) = 0.15
    dblPoint(8) = 0.25
    'Create curve
    Set objCurve1 = objCurves.AddByPoints(Pointcount:=4, Points:=dblPoint, _
                                          FitType:=igDirectFit, Closed:=False)

    Set objLines = objSheet.Lines2d
    Set objLine1 = objLines.AddBy2Points(x1:=0.1, y1:=0.1, x2:=0.3, y2:=0.1)
    Call objSheet.Relations2d.AddKeypoint(object1:=objLine1, Index1:=igLineStart, object2:=objCurve1, Index2:=0)
    'create a relationships collection
    Set objCurveRelationships = objCurve1.Relationships
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objSheet = Nothing
    Set objCurves = Nothing
    Set objCurve1 = Nothing
    Set objCurveRelationships = Nothing
End Sub
See Also

Curve2d Object  | Curve2d Members