Solid Edge Part Type Library
Relations2d Property
Description
Returns the Relations2d collection object for the referenced Profile object.
Property type
Read-only property
Syntax
Visual Basic
Public Property Relations2d As Object
Example
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 objLine2 As SolidEdgeFrameworkSupport.Line2d
    Dim objRelns As SolidEdgeFrameworkSupport.Relations2d
    ' 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(objDoc.RefPlanes(1)).Lines2d
    'Create a Line object
    Set objLine1 = objLines.AddBy2Points(x1:=0, y1:=0, x2:=0.1, y2:=0.1)
    Set objLine2 = objLines.AddBy2Points(x1:=0.5, y1:=0.5, x2:=0.75, y2:=0.5)
    'Create a Relations2d object and make a Parallel relation between the two line objects
    Set objRelns = objDoc.ProfileSets.Add.Profiles.Add(objDoc.RefPlanes(1)).Relations2d
    Call objRelns.AddParallel(objLine1, objLine2)
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objLines = Nothing
    Set objLine1 = Nothing
    Set objLine2 = Nothing
    Set objRelns = Nothing
End Sub
See Also

Profile Object  | Profile Members