Solid Edge Part Type Library
Parent Property
Description
Returns the parent object for the referenced object.
Property type
Read-only property
Syntax
Visual Basic
Public Property Parent As Object
Example
Private Sub Form_Load()
    Dim objApp As SolidEdgeFramework.Application
    Dim objDoc As SolidEdgePart.PartDocument
    Dim objModel As SolidEdgePart.Model
    Dim objProfArr(1 To 2) As SolidEdgePart.Profile
    Dim objThnWls As SolidEdgePart.Thinwalls
    Dim objParent 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.PartDocument")
        objApp.Visible = True
    Else
        Set objDoc = objApp.ActiveDocument
    End If
    ' Draw the Profile
    Set objProfArr(1) = objDoc.ProfileSets.Add.Profiles.Add(pRefPlaneDisp:=objDoc.RefPlanes(1))
    Call objProfArr(1).Circles2d.AddByCenterRadius(x:=0, y:=0, Radius:=0.01)
    ' Create the Base Protrusion Object
    Set objModel = objDoc.Models.AddFiniteExtrudedProtrusion(NumberOfProfiles:=1, _
                                                             ProfileArray:=objProfArr, ProfilePlaneSide:=igRight, _
                                                             ExtrusionDistance:=0.04)
    objProfArr(1).Visible = False
    ' Create the ThinWalls collection object
    Set objThnWls = objModel.Thinwalls
    ' Get the Parent Property of ThinWalls object
    Set objParent = objThnWls.Parent
    ' USER DISPLAY
    ' Release objects
    Set objApp = Nothing
    Set objDoc = Nothing
    Set objProfArr(1) = Nothing
    Set objThnWls = Nothing
    Set objModel = Nothing
    Set objParent = Nothing
End Sub
See Also

Thinwalls Collection  | Thinwalls Members